Jachin,

It sounds looks like you have your gcc selected as version 2, which I won't vouch for. We've been using 3.3 under panther. If "gcc_select" doesn't show 3.3, use "sudo gcc_select 3.3" to select 3.3 as your default compiler. You may be able to get 2.95 to work, but I haven't done that for a while.

The following script should fetch and correctly build the latest Xerces release from the bash command line:

#!/bin/bash
mkdir testx
cd testx
curl -O "http://xml.apache.org/dist/xerces-c/stable/xerces-c-src2_4_0.tar.gz";
gnutar -xzf xerces-c-src2_4_0.tar.gz
cd xerces-c-src2_4_0
export XERCESCROOT=`pwd`
cd src/xercesc
./runConfigure -p macosx -n native -t native
make


If you get though that okay, your the xcode project should also work for you. Make sure you set the build style to "Development GCC 3". The build styles for gcc 2 should probably be taken out, but they may still work.

Please let me know if this does or doesn't solve your problem.

James.



On Dec 6, 2003, at 6:45 PM, jachin D rupe wrote:

problems compiling xerces-c on Mac OS X 10.3 Panther


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to