Browse Source

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

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1282 e5f2f494-b856-4b98-b285-d166d9295462
Jelte Jansen 15 years ago
parent
commit
700baf90cd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -99,7 +99,7 @@ AC_ARG_WITH([boostlib],
 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