# HG changeset patch # User Eli Zaretskii # Date 1136397118 0 # Node ID e213d76ca44669d59bb40533028e64c27989dc30 # Parent 271ab3aed790a133c8752f2326c11be9c8265bc9 [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32. diff -r 271ab3aed790 -r e213d76ca446 src/process.c --- a/src/process.c Wed Jan 04 17:23:23 2006 +0000 +++ b/src/process.c Wed Jan 04 17:51:58 2006 +0000 @@ -118,6 +118,14 @@ #include #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"