[svn] commit: r1282 - /trunk/configure.ac

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Mar 10 16:12:31 UTC 2010


Author: jelte
Date: Wed Mar 10 16:12:31 2010
New Revision: 1282

Log:
specifying only --with-boostlib in configure makes make stop because $boostlib will be set to 'yes', so we need to test the system libraries in that case too

Modified:
    trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Wed Mar 10 16:12:31 2010
@@ -99,7 +99,7 @@
 AC_HELP_STRING([--with-boostlib=PATH],
   [specify a path to boost libraries if it is not automatically found, or "no" to disable it]),
   [boostlib_path="$withval"], [boostlib_path="auto"])
-if test "$boostlib_path" != "no" -a "$boostlib_path" != "auto"; then
+if test "$boostlib_path" != "no" -a "$boostlib_path" != "auto" -a "$boostlib_path" != "yes"; then
 	BOOST_LDFLAGS="-L$boostlib_path"
 fi
 




More information about the bind10-changes mailing list