cppunit on leopard
Brought to you by:
blep
Ciao,
FYI, there seems to be some glitch in the building of cppunit under MacOSX leopard. configure complains about conftest.dSYM being a directory when trying to delete it because of various:
rm conftest*
statements. By googling around I found out that this is due to UNIX03 compatibility of leopard. I managed to get everything compiling by doing:
perl -p -i -e 's|rm conftest\*|rm -r conftest*|g' configure \ aclocal.m4 \ libtool \ config/ltmain.sh
Ciao,
Giulio