From 0f7ed8f2edaea1f75d608612e49703f6cc25e1dc Mon Sep 17 00:00:00 2001 From: Marc Cromme Date: Fri, 23 Feb 2007 19:17:25 +0000 Subject: [PATCH] added missing $LIBS linking actions for boost - there must be a better way ?? --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index 5a9a4c9..2167645 100644 --- a/configure.ac +++ b/configure.ac @@ -46,12 +46,18 @@ if test "$ax_cv_boost_base" = "no"; then fi if test "$ax_cv_boost_date_time" = "no"; then AC_MSG_ERROR([install libboost-date-time-dev or similar]) +else + LIBS="$LIBS -lboost_date_time"; fi if test "$ax_cv_boost_program_options" = "no"; then AC_MSG_ERROR([install libboost-program-options-dev or similar]) +else + LIBS="$LIBS -lboost_program_options"; fi if test "$ax_cv_boost_thread" = "no"; then AC_MSG_ERROR([install libboost-thread-dev or similar]) +else + LIBS="$LIBS -lboost_thread"; fi if test "$ax_cv_boost_unit_test_framework" = "no"; then AC_MSG_ERROR([install libboost-test-dev or similar]) -- 1.7.10.4