Mercurial > emacs
changeset 68022:e213d76ca446
[WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 04 Jan 2006 17:51:58 +0000 |
parents | 271ab3aed790 |
children | ff3192098d4e |
files | src/process.c |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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"