"Horn, Nancy" wrote:
> 
>         Has anyone successfully built xerces_5_0_1.so from the sources
> (ibm4c-src_3_5_0)
> using Solaris CC Version 5.0?

I've built libxerces-c1_5_1.so from xerces-c-src1_5_1.tar using CC 5.0 on
Solaris 5.7 and the native transcoder without problems.  I've had problems with
building ICU, but not the native transcoder.  Be sure you chmod +x the
appropriate scripts.  (Not sure why these aren't executable by default.)  Here's
a simple script:

#!/bin/ksh

export XERCESCROOT=$PWD/xerces-c-src1_5_1

find $XERCESCROOT -name runConfigure   | xargs -t -i chmod +x {}
find $XERCESCROOT -name configure      | xargs -t -i chmod +x {}
find $XERCESCROOT -name configure.in   | xargs -t -i chmod +x {}
find $XERCESCROOT -name config.guess   | xargs -t -i chmod +x {}
find $XERCESCROOT -name config.sub     | xargs -t -i chmod +x {}
find $XERCESCROOT -name install-sh     | xargs -t -i chmod +x {}
find $XERCESCROOT -name version.incl   | xargs -t -i chmod +x {}

cd $XERCESCROOT/src
runConfigure -psolaris -ccc -xCC 
gmake clean
gmake 

-- 
  Jack Marr ([EMAIL PROTECTED]) Cypress, CA
  Unigraphics Solutions - NYSE:UGS - http://www.ugsolutions.com

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

Reply via email to