Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
805b0439
Commit
805b0439
authored
Jan 04, 2006
by
Eli Zaretskii
Browse files
[WINDOWSNT]: Undef AF_INET6 to disable IPv6 support for w32.
parent
0c731046
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
src/ChangeLog
src/ChangeLog
+5
-0
src/process.c
src/process.c
+8
-0
No files found.
src/ChangeLog
View file @
805b0439
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.
...
...
src/process.c
View file @
805b0439
...
...
@@ -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"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment