[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Bootstrap failed during compile of process.c
From: |
Eli Zaretskii |
Subject: |
Re: Bootstrap failed during compile of process.c |
Date: |
Wed, 04 Jan 2006 19:59:09 +0200 |
> From: address@hidden (Kim F. Storm)
> Date: Wed, 04 Jan 2006 16:49:44 +0100
> Cc: Emacs Devel <address@hidden>
>
> Does this fix it?
>
> *** process.c 04 Jan 2006 01:06:39 +0100 1.469
> --- process.c 04 Jan 2006 16:49:14 +0100
> ***************
> *** 108,113 ****
> --- 108,117 ----
> #endif
> #include <net/if.h>
> #endif
> +
> + #if defined(WINDOWSNT) && defined(AF_INET6)
> + #include <ws2tcpip.h>
> + #endif
> #endif
I don't think this is a good idea, since ws2tcpip.h is incompatible
with winsock.h (which is included earlier in process.c by sys/socket.h
emulation in nt/inc/sys/socket.h). Here's the relevant excerpt from
ws2tcpip.h on my system:
#if (defined _WINSOCK_H && !defined _WINSOCK2_H)
#error "ws2tcpip.h is not compatable with winsock.h. Include winsock2.h
instead."
#endif
- Bootstrap failed during compile of process.c, Lennart Borgman, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Kim F. Storm, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Lennart Borgman, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Eli Zaretskii, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Lennart Borgman, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Eli Zaretskii, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Lennart Borgman, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Lennart Borgman, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Lennart Borgman, 2006/01/04
- Re: Bootstrap failed during compile of process.c, Stefan Monnier, 2006/01/05