Changeset 1364
- Timestamp:
- 06/01/05 13:50:00 (3 years ago)
- Files:
-
- hydranode/configure.ac (modified) (2 diffs)
- hydranode/m4/boost.m4 (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
hydranode/configure.ac
r1361 r1364 66 66 [builtin_boost=$withval], [builtin_boost=false] 67 67 ) 68 dnl This is here and not in boost.m4 'cos otherwise it breaks when both 69 dnl builtin_boost and with-boost args are specified. 70 AC_ARG_WITH(boost, 71 AC_HELP_STRING( 72 [--with-boost=PATH], 73 [Absolute path name where the Boost C++ libraries reside]), 74 [BOOST_ROOT=$withval], [BOOST_ROOT="/usr"] 75 ) 76 68 77 AC_ARG_WITH(builtin, 69 78 [ --with-builtin=MODULES Modules that shall be built-in ], … … 122 131 RS_BOOST_PROGRAM_OPTIONS([], [builtin_boost=yes]) 123 132 fi 124 if test $BOOST_ROOT = "/usr"; then133 if test -z $BOOST_ROOT || test $BOOST_ROOT = "/usr"; then 125 134 boost_path="$HOME/boost_1_32_0"; 126 135 else 127 136 boost_path=$BOOST_ROOT 137 fi 138 if test x$builtin_boost = xyes; then 139 BOOST_CPPFLAGS="-I$boost_path" 128 140 fi 129 141 hydranode/m4/boost.m4
r1341 r1364 11 11 AC_LANG_SAVE 12 12 AC_LANG_CPLUSPLUS 13 14 dnl Extract the path name from a --with-boost=PATH argument15 AC_ARG_WITH(boost,16 AC_HELP_STRING(17 [--with-boost=PATH],18 [Absolute path name where the Boost C++ libraries reside]),19 [BOOST_ROOT=$withval], [BOOST_ROOT="/usr"]20 )21 13 22 14 boost_min_version=ifelse([$1], ,1.20.0,[$1])
