diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b0cb330..64e0cbb 100644 --- a/configure.ac +++ b/configure.ac @@ -199,7 +199,12 @@ AC_CHECK_FUNC(setsockopt, , AC_CHECK_LIB(socket, setsockopt, AC_SUBST(NETLIBS) if test "$have_w32_system" = yes; then - NETLIBS="-lws2_32 $NETLIBS" + if test "$have_w32ce_system" = yes; then + NETLIBS="-lws2 $NETLIBS" + else + # FIXME: Check why we need to use ws2_32 and document that. + NETLIBS="-lws2_32 $NETLIBS" + fi fi |