]> granicus.if.org Git - libevent/commitdiff
In configure, test for _WIN32 not WIN32.
authorPeter Rosin <peda@lysator.liu.se>
Wed, 25 May 2011 23:54:33 +0000 (19:54 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 26 May 2011 00:04:45 +0000 (20:04 -0400)
configure.in

index 7e7c217b24d390cc3d7bcabc2865dfdb2ad15912..0aa1fb9208aa540c0266c23ea199b9e6ebd21b76 100644 (file)
@@ -96,12 +96,12 @@ AC_SEARCH_LIBS([inet_aton], [resolv])
 AC_SEARCH_LIBS([clock_gettime], [rt])
 AC_SEARCH_LIBS([sendfile], [sendfile])
 
-dnl - check if the macro WIN32 is defined on this compiler.
-dnl - (this is how we check for a windows version of GCC)
+dnl - check if the macro _WIN32 is defined on this compiler.
+dnl - (this is how we check for a windows compiler)
 AC_MSG_CHECKING(for WIN32)
 AC_TRY_COMPILE(,
        [
-#ifndef WIN32
+#ifndef _WIN32
 die horribly
 #endif
        ],
@@ -537,7 +537,7 @@ AC_CHECK_TYPES([struct in6_addr, struct sockaddr_in6, sa_family_t, struct addrin
 #ifdef HAVE_NETDB_H
 #include <netdb.h>
 #endif
-#ifdef WIN32
+#ifdef _WIN32
 #define WIN32_WINNT 0x400
 #define _WIN32_WINNT 0x400
 #define WIN32_LEAN_AND_MEAN
@@ -560,7 +560,7 @@ AC_CHECK_MEMBERS([struct in6_addr.s6_addr32, struct in6_addr.s6_addr16, struct s
 #ifdef HAVE_SYS_SOCKET_H
 #include <sys/socket.h>
 #endif
-#ifdef WIN32
+#ifdef _WIN32
 #define WIN32_WINNT 0x400
 #define _WIN32_WINNT 0x400
 #define WIN32_LEAN_AND_MEAN