bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

nanosleep module and mingw32


From: Martin Lambers
Subject: nanosleep module and mingw32
Date: Thu, 18 May 2006 21:50:30 +0200
User-agent: Mutt/1.5.11+cvs20060403

Hi,

I get the following error when using the nanosleep module and
crosscompiling to W32 with the Debian mingw32 package and 
./configure --host=i586-mingw32msvc :

../gnulib/libgnu.a(nanosleep.o):nanosleep.c:(.text+0x64): undefined reference 
to `_select'

The attached patch fixes this for me.

Regards, Martin



--- gnulib/lib/nanosleep.c.orig 2005-09-23 06:15:13.000000000 +0200
+++ gnulib/lib/nanosleep.c  2006-05-18 21:45:44.000000000 +0200
@@ -25,6 +25,10 @@
    prototype for rpl_nanosleep. (they'd conflict e.g., on alpha-dec-osf3.2)  */
 #undef nanosleep

+#ifdef _WIN32
+#include <winsock2.h>
+#endif
+
 #include <stdbool.h>
 #include <stdio.h>
 #include <sys/types.h>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]