Commit 126568cf authored by Gildas Bazin's avatar Gildas Bazin

* configure.ac.in: fixed linking problem with the slp plugin on win32.
parent e7db1f64
...@@ -2675,7 +2675,7 @@ then ...@@ -2675,7 +2675,7 @@ then
if test "x${have_slp}" = "xtrue" if test "x${have_slp}" = "xtrue"
then then
PLUGINS="${PLUGINS} slp" PLUGINS="${PLUGINS} slp"
LDFLAGS_slp="${LDFLAGS_slp} -lslp" LDFLAGS_slp="-lslp ${LDFLAGS_slp}"
fi fi
else else
AC_MSG_CHECKING(for slp headers in ${with_slp}) AC_MSG_CHECKING(for slp headers in ${with_slp})
...@@ -2684,7 +2684,7 @@ then ...@@ -2684,7 +2684,7 @@ then
dnl Use ${with_slp}/libslp/slp.h dnl Use ${with_slp}/libslp/slp.h
AC_MSG_RESULT(yes) AC_MSG_RESULT(yes)
PLUGINS="${PLUGINS} slp" PLUGINS="${PLUGINS} slp"
LDFLAGS_slp="${LDFLAGS_slp} -L${with_slp} -lslp" LDFLAGS_slp="-L${with_slp} -lslp ${LDFLAGS_slp}"
CPPFLAGS_slp="${CPPFLAGS_slp} -I${with_slp}" CPPFLAGS_slp="${CPPFLAGS_slp} -I${with_slp}"
else else
dnl No libslp could be found, sorry dnl No libslp could be found, sorry
......
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