diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2014-10-10 13:00:50 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2015-02-09 20:12:31 -0500 |
commit | 8438074997097c673ba856ce8526ee94bb668bba (patch) | |
tree | d80c9f813c8e6aed69bef52deec1345841e6f8a4 | |
parent | 41f94edf221019a6c4b8f78c2b17c389442f546e (diff) |
build: fix dynamic boost check when --with-boost= is used
(cherry picked from commit a7d1f035ae2b33d5242d9aee5da1b538a0f5adba)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ed68ca258c..83c83eb880 100644 --- a/configure.ac +++ b/configure.ac @@ -436,7 +436,7 @@ if test x$use_tests = xyes; then dnl Determine if -DBOOST_TEST_DYN_LINK is needed AC_MSG_CHECKING([for dynamic linked boost test]) TEMP_LIBS="$LIBS" - LIBS="$LIBS $BOOST_UNIT_TEST_FRAMEWORK_LIB" + LIBS="$LIBS $BOOST_LDFLAGS $BOOST_UNIT_TEST_FRAMEWORK_LIB" TEMP_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" AC_LINK_IFELSE([AC_LANG_SOURCE([ |