Kaydet (Commit) 9ea4189c authored tarafından David Tardon's avatar David Tardon

mingw: fix check for boost date_time dll

Change-Id: I4a31c215d70e6f8f8fc8a768851315b919fba03e
üst 6e90fdb5
......@@ -7335,7 +7335,12 @@ if test "$with_system_boost" = "yes"; then
AX_BOOST_BASE
AX_BOOST_DATE_TIME
mingw_boost_date_time_dll=`echo $BOOST_DATE_TIME_LIB | sed -e 's/^-l//' -e 's/\.dll$//'`
libo_MINGW_CHECK_DLL([BOOST_DATE_TIME], [$mingw_boost_date_time_dll])
libo_MINGW_TRY_DLL([BOOST_DATE_TIME], [$mingw_boost_date_time_dll])
if test -z "$MINGW_BOOST_DATE_TIME_DLL"; then
# if not found, try again with 'lib' prefix
libo_MINGW_CHECK_DLL([BOOST_DATE_TIME],
[lib$mingw_boost_date_time_dll])
fi
else
AC_MSG_RESULT([internal])
BUILD_TYPE="$BUILD_TYPE BOOST"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment