From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Bootstrap failed during compile of process.c Date: Wed, 04 Jan 2006 18:51:18 +0100 Message-ID: <43BC0B16.6060607@student.lu.se> References: <43BB7209.2090300@student.lu.se> <43BBDC50.20304@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1136400534 11223 80.91.229.2 (4 Jan 2006 18:48:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 4 Jan 2006 18:48:54 +0000 (UTC) Cc: Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jan 04 19:48:51 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EuDgl-0003xj-Cl for ged-emacs-devel@m.gmane.org; Wed, 04 Jan 2006 19:48:47 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EuDiR-0002r6-M5 for ged-emacs-devel@m.gmane.org; Wed, 04 Jan 2006 13:50:31 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EuCp1-0007mE-VW for emacs-devel@gnu.org; Wed, 04 Jan 2006 12:53:16 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EuCow-0007jw-Ix for emacs-devel@gnu.org; Wed, 04 Jan 2006 12:53:14 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EuCow-0007js-CU for emacs-devel@gnu.org; Wed, 04 Jan 2006 12:53:10 -0500 Original-Received: from [81.228.8.164] (helo=pne-smtpout2-sn2.hy.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EuCqN-000825-AD for emacs-devel@gnu.org; Wed, 04 Jan 2006 12:54:39 -0500 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout2-sn2.hy.skanova.net (7.2.069.1) id 43BA872F000635A5; Wed, 4 Jan 2006 18:51:19 +0100 User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en Original-To: "Kim F. Storm" In-Reply-To: X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:48697 Archived-At: Kim F. Storm wrote: >Lennart Borgman writes: > > > >>I looked in the header files for MinGW5 and sockaddr_in6 is found in >>ws2tcpip.h. This is consistent with >> >> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/sockaddr_2.asp >> >>Where should ws2tcpip.h be included? Or should it currently? >> >> > >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 > #endif >+ >+ #if defined(WINDOWSNT) && defined(AF_INET6) >+ #include >+ #endif > #endif > > #ifdef IRIS > > I had to make the changes below too to make it compile. It compiles, I can start it - but I have no idea if this is correct. -- Lennart Index: nt/inc/sys/socket.h =================================================================== RCS file: /cvsroot/emacs/emacs/nt/inc/sys/socket.h,v retrieving revision 1.11 diff -c -r1.11 socket.h *** nt/inc/sys/socket.h 10 Aug 2005 15:40:54 -0000 1.11 --- nt/inc/sys/socket.h 4 Jan 2006 16:29:14 -0000 *************** *** 50,56 **** #define timeval ws_timeval #endif ! #include /* redefine select to reference our version */ #ifdef MUST_REDEF_SELECT --- 50,56 ---- #define timeval ws_timeval #endif ! #include /* redefine select to reference our version */ #ifdef MUST_REDEF_SELECT