]> git.sesse.net Git - vlc/commitdiff
WinCE: fix live555 detection/linkage
authorPierre Ynard <linkfanel@yahoo.fr>
Tue, 10 Nov 2009 22:09:29 +0000 (23:09 +0100)
committerPierre Ynard <linkfanel@yahoo.fr>
Tue, 10 Nov 2009 22:09:29 +0000 (23:09 +0100)
configure.ac

index 5642a68b5e5326a68b295db9b127171c9a1603b2..00a89dbe88718903dc82842ba2c2fa23b667a7bd 100644 (file)
@@ -1937,6 +1937,9 @@ lternatively you can use --disable-live555 to disable the liveMedia plugin.])
       if test "${SYS}" = "mingw32"; then
         # add ws2_32 for closesocket, select, recv
         other_libs="$other_libs -lws2_32"
+      elif test "${SYS}" = "mingwce"; then
+        # add ws2 for closesocket, select, recv
+        other_libs="$other_libs -lws2"
       fi
     dnl We need to check for pic because live555 don't provide shared libs
     dnl and we want to build a plugins so we need -fPIC on some arch.