From: Yurii R. <yr...@us...> - 2003-02-10 20:46:15
|
Update of /cvsroot/eas-dev/eas-dev/build/unix In directory sc8-pr-cvs1:/tmp/cvs-serv2940/build/unix Modified Files: INSTALL configure.in Log Message: adding Boost, misc changes Index: INSTALL =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/INSTALL,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- INSTALL 10 Feb 2003 10:04:18 -0000 1.6 +++ INSTALL 10 Feb 2003 20:45:39 -0000 1.7 @@ -15,6 +15,7 @@ glib 2.2.0 (http://www.gtk.org/) CxxTest 2.8.0 (http://cxxtest.sourceforge.net/) pkg-config 0.15.0 (http://www.freedesktop.org/software/pkgconfig) +Boost 1.29.0 or above (http://www.boost.org/) liburl (http://www.damtp.cam.ac.uk/user/kp229/liburl/) OpenLDAP 2.1.12 or above OpenOffice.Org SDK 1.0.1_alpha (http://udk.openoffice.org/) Index: configure.in =================================================================== RCS file: /cvsroot/eas-dev/eas-dev/build/unix/configure.in,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- configure.in 9 Feb 2003 08:18:16 -0000 1.17 +++ configure.in 10 Feb 2003 20:45:40 -0000 1.18 @@ -178,6 +178,18 @@ AC_DEFINE(HAVE_URL_STRING) +dnl Boost +AC_ARG_WITH(boost,[ --with-boost=DIR Path to the boost library [/usr/local/boost]],[ + BOOST_PATH="$with_boost" + ],[ + BOOST_PATH="/usr/local/boost" + ] +) + +AC_SUBST(BOOST_PATH) + + + dnl dnl Tools dnl |