]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Added wsock32 library when under win.
authorAndrea Zagli <azagli@libero.it>
Mon, 14 Nov 2011 15:29:11 +0000 (16:29 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 14 Nov 2011 15:36:00 +0000 (16:36 +0100)
configure.ac
src/Makefile.am

index 310c23871737e93bf48aaaed1714a33e1728fd74..980eaab4ab96ecc8bf00bdc1c32c09e991c37b31 100644 (file)
@@ -66,6 +66,22 @@ AC_C_CONST
 # Checks for library functions.
 
 # Checks for library functions.
+
+dnl ******************************
+dnl Check for Operating System
+dnl ******************************
+
+platform_win32=no
+
+case "$host" in
+*-mingw*)
+    platform_win32=yes
+    ;;
+esac
+
+AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes])
+
+# Output files
 AC_CONFIG_FILES([
        libsolipa.pc
        libsolipaooo.pc
index dda206a0d6c2605c84153027b650199f3a3b36cd..eb9fa53ccf1fc616d4b67d089122544621c8f719 100644 (file)
@@ -1,7 +1,14 @@
 guidir = $(datadir)/$(PACKAGE)/gui
 
+if PLATFORM_WIN32
+WIN32_LIBS=-lwsock32
+else
+WIN32_LIBS=
+endif
+
 LIBS = $(SOLIPA_LIBS) \
-       $(CAMEL_LIBS)
+       $(CAMEL_LIBS) \
+       $(WIN32_LIBS)
 
 if HAVE_CAMEL3
 CAMEL3 = -DCAMEL3=\"yes\"