From: Steve C. <ste...@mq...> - 2002-03-12 03:18:53
|
On Mon, 11 Mar 2002 14:23, Haejoong Lee wrote: > P.S. Do you still have precision problem with AIF loader? Please > let me know. That's working ok now. I managed to build AGLIB again after having problems with telling it where xercesc was, for some reason your configure.in script which tries to find the version of the library (a neat method btw which shouldn't be necessary) wasn't working, even though the test program was ok and output the right version number. In the end I hacked configure.in to add a --with-xercesc-version arg but wasn't able to modify the script to not run your check if this arg was supplied (I tried but the configure script just crashed). Here's the lines I added, perhaps you can work them in more successfully: AC_ARG_WITH(xercesc_version, [ --with-xercesc-version=N_N_N version number of libxerces-c, eg 1_7_0], XERCESC_VER=xerces-c$withval) I also note that you need to make clean after reconfiguring etc. to ensure that all libraries get updated. On my first build the ag_tcl.so library didn't get rebuilt. I guess that this is just good practice but could be the cause of some errors. I wonder if automake can force this? Steve |