configure: set BOOST_LIB_SUFFIX to empty string by default

This commit is contained in:
Andrzej Rybczak
2015-05-02 15:20:45 +02:00
parent 8f646e0f5c
commit 7acff16535
2 changed files with 3 additions and 2 deletions

View File

@@ -95,8 +95,8 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[struct A { virtual void foo() { } }; struct
dnl =============================
dnl = setting boost environment =
dnl =============================
AS_IF([test -z "${BOOST_LIB_SUFFIX+x}"], [BOOST_LIB_SUFFIX=-mt])
AC_ARG_VAR([BOOST_LIB_SUFFIX], [Boost library name suffix [default=-mt]])
AS_IF([test -z "${BOOST_LIB_SUFFIX+x}"], [BOOST_LIB_SUFFIX=])
AC_ARG_VAR([BOOST_LIB_SUFFIX], [Boost library name suffix [default=]])
dnl ======================================
dnl = checking for various boost headers =