diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2014-10-10 13:00:50 -0400 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2014-10-10 13:00:50 -0400 |
commit | a7d1f035ae2b33d5242d9aee5da1b538a0f5adba (patch) | |
tree | e3635b34989ee3fc615db86449c8ae90cdc622cf /configure.ac | |
parent | 023690c0f24a06853bb860db032a1ff67978ee74 (diff) |
build: fix dynamic boost check when --with-boost= is used
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 87c7833bce..90aa112421 100644 --- a/configure.ac +++ b/configure.ac @@ -521,7 +521,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([ |