Index: GNUstep-HOWTO =================================================================== RCS file: /cvsroot/gnustep/gnustep/core/make/GNUstep-HOWTO,v retrieving revision 1.31 diff -u -r1.31 GNUstep-HOWTO --- GNUstep-HOWTO 4 Sep 2004 15:06:14 -0000 1.31 +++ GNUstep-HOWTO 5 Dec 2004 21:29:38 -0000 @@ -600,7 +600,7 @@ MacOSX/PowerPC ============== -Currently tested on MacOSX 10.2, 10.3 +Currently tested on MacOSX 10.1.5, 10.2, 10.3 `Recommended compiler' Default. @@ -609,6 +609,11 @@ None. `Special Instructions' + You may have to extend your PATH variable before running + configure: + + export PATH=$PATH:/usr/sbin + By default, on Mac OS X, only the GNUstep extensions are built. This is if you want to build gdl2, etc on Mac OS X. Xcode project files exist, but they may not be up-to-date. Try: @@ -618,9 +623,23 @@ make install cd ../base + . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh ./configure --with-xml-prefix=/usr --disable-xmltest make debug=yes install + On Mac OS X 10.1.5, there is no libxml. Either install libxml2 (see + above) or configure with --disable-xml. With gcc 2.95.2, the default + on Mac OS X 10.1.5, you have to provide -no-cpp-precomp to gcc: + + cd make + CC="gcc -no-cpp-precomp" ./configure --with-library-combo=apple-apple-apple + make install + + cd ../base + . /usr/GNUstep/System/Library/Makefiles/GNUstep.sh + CC="gcc -no-cpp-precomp" ./configure --disable-xml + make debug=yes install + See also the Darwin/PowerPC section.