Commit a2fb8aba authored by Geoffroy Couprie's avatar Geoffroy Couprie

Fix configure: define USE_PEFLAGS for every platform

parent 6f18addb
......@@ -364,7 +364,6 @@ case "${host_os}" in
then
AC_CHECK_TOOL(PEFLAGS, peflags, :)
fi
AM_CONDITIONAL(USE_PEFLAGS, [test "${enable_peflags}" = "yes"])
fi
if test "${SYS}" = "mingwce"; then
# add ws2 for closesocket, select, recv
......@@ -412,6 +411,7 @@ AM_CONDITIONAL(HAVE_DARWIN, test "${SYS}" = "darwin")
AM_CONDITIONAL(HAVE_LINUX, [test "${SYS}" = "linux"])
AM_CONDITIONAL(HAVE_WIN32, test "${SYS}" = "mingw32")
AM_CONDITIONAL(HAVE_WINCE, test "${SYS}" = "mingwce")
AM_CONDITIONAL(USE_PEFLAGS, [test "${enable_peflags}" = "yes"])
dnl
dnl Sadly autoconf doesn't think about testing foo.exe when ask to test
......
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