[WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
authorEli Zaretskii <eliz@gnu.org>
Wed, 4 Jan 2006 17:52:40 +0000 (17:52 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 4 Jan 2006 17:52:40 +0000 (17:52 +0000)
src/ChangeLog
src/process.c

index 4502365..cb01d72 100644 (file)
@@ -1,3 +1,8 @@
+2006-01-04  Eli Zaretskii  <eliz@gnu.org>
+
+       * process.c [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support
+       for w32.
+
 2006-01-04  Kim F. Storm  <storm@cua.dk>
 
        * process.c: Add IPv6 support.
index c842b79..3dfbf96 100644 (file)
@@ -118,6 +118,14 @@ Boston, MA 02110-1301, USA.  */
 #include <sys/wait.h>
 #endif
 
+/* Disable IPv6 support for w32 until someone figures out how to do it
+   properly.  */
+#ifdef WINDOWSNT
+# ifdef AF_INET6
+#  undef AF_INET6
+# endif
+#endif
+
 #include "lisp.h"
 #include "systime.h"
 #include "systty.h"