--------------------------------------------------------------------------------
2003/06/13  How to build ROOT with custom new and delete on MacOS X 10.2
--------------------------------------------------------------------------------

$ tar -zxvf root_v3.05.05.source.tar.gz
$ mv root 3.05.05
$ cd 3.05.05
$ patch -p1 -s < ../root_v3.05.05-macosx10.2-mapfile.patch
$ export ROOTSYS=`pwd`
$ export DYLD_LIBRARY_PATH=$ROOTSYS/lib
$ export PATH=/usr/bin:$ROOTSYS/bin:$PATH
$ export ROOTBUILD=debug
$ ./configure macosx
$ make lib/libNew.dylib
$ make


--------------------------------------------------------------------------------
2003/06/13  How to test TMapFile
--------------------------------------------------------------------------------

$ cd tutorials
$ root -l
....
root [0] .x hprod.C
.....


Open another window and after properly setting up ROOTSYS, etc. do

$ root -l
....
root [0] gSystem->Load("libHistPainter.so");
root [1] .x hcons.C



