From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Jan D." Newsgroups: gmane.emacs.devel Subject: Re: make bootstrap: need moral support. :-( Date: Tue, 21 Feb 2006 10:06:36 +0100 (CET) Message-ID: <200602210906.k1L96aHQ022177@coolsville.localdomain> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1140552812 20774 80.91.229.2 (21 Feb 2006 20:13:32 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 21 Feb 2006 20:13:32 +0000 (UTC) Cc: Alan Mackenzie , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 21 21:13:31 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 1FBdt3-000291-OQ for ged-emacs-devel@m.gmane.org; Tue, 21 Feb 2006 21:13:30 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FBdt2-0000We-NF for ged-emacs-devel@m.gmane.org; Tue, 21 Feb 2006 15:13:28 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FBTXG-0005jI-53 for emacs-devel@gnu.org; Tue, 21 Feb 2006 04:10:19 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FBTVR-0003rd-VM for emacs-devel@gnu.org; Tue, 21 Feb 2006 04:08:27 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FBTUW-0002JW-C3 for emacs-devel@gnu.org; Tue, 21 Feb 2006 04:07:28 -0500 Original-Received: from [195.54.107.70] (helo=mxfep01.bredband.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FBTag-0008IJ-NR; Tue, 21 Feb 2006 04:13:51 -0500 Original-Received: from coolsville.localdomain ([83.226.180.152] [83.226.180.152]) by mxfep01.bredband.com with ESMTP id <20060221090723.NFAG16046.mxfep01.bredband.com@coolsville.localdomain>; Tue, 21 Feb 2006 10:07:23 +0100 Original-Received: (from jhd@localhost) by coolsville.localdomain (8.13.4/8.13.4/Submit) id k1L96aHQ022177; Tue, 21 Feb 2006 10:06:36 +0100 In-Reply-To: "from Eli Zaretskii at Feb 21, 2006 06:34:12 am" Original-To: Eli Zaretskii 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:50857 Archived-At: > > >> The source code in process.c looks like this: > > >> #ifdef AF_INET6 > > >> case AF_INET6: > > >> { > > >> struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa; > > >> uint16_t *ip6 = (uint16_t *)&sin6->sin6_addr; <======= L2245 > > > > >This means that the IPv6 configury test is misbehaving. Please look > > >into your headers and try to find out why the configure-time test > > >decides that your system supports IPv6, but `struct sockaddr_in6' is > > >not defined by your system headers. > > > > In Linux 2.4.17, that struct is defined in the file > > linux-2.4.17/include/linux/in6.h/. Emacs files.c don't #include this > > file at all. I'll have a look at ./configure, sometime. > struct sockaddr_in6 should be defined in netinet/in.h also. Jan D.