From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: make bootstrap: need moral support. :-( Date: Tue, 21 Feb 2006 06:34:12 +0200 Message-ID: References: Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1140512070 1323 80.91.229.2 (21 Feb 2006 08:54:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 21 Feb 2006 08:54:30 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Feb 21 09:54:28 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 1FBTHZ-00076E-W3 for ged-emacs-devel@m.gmane.org; Tue, 21 Feb 2006 09:54:06 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FBTCY-0005IM-8F for ged-emacs-devel@m.gmane.org; Tue, 21 Feb 2006 03:48:54 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FBPEG-00024B-5m for emacs-devel@gnu.org; Mon, 20 Feb 2006 23:34:24 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FBPEC-0001wL-Sg for emacs-devel@gnu.org; Mon, 20 Feb 2006 23:34:22 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FBPE5-0001dr-Ce for emacs-devel@gnu.org; Mon, 20 Feb 2006 23:34:13 -0500 Original-Received: from [192.114.186.66] (helo=romy.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FBPKG-0001d1-F2 for emacs-devel@gnu.org; Mon, 20 Feb 2006 23:40:36 -0500 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-143-189.inter.net.il [80.230.143.189]) by romy.inter.net.il (MOS 3.7.3-GA) with ESMTP id DPJ47558 (AUTH halo1); Tue, 21 Feb 2006 06:34:08 +0200 (IST) Original-To: Alan Mackenzie In-reply-to: (message from Alan Mackenzie on Mon, 20 Feb 2006 22:32:29 +0000 (GMT)) 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:50851 Archived-At: > Date: Mon, 20 Feb 2006 22:32:29 +0000 (GMT) > From: Alan Mackenzie > cc: emacs-devel@gnu.org > > >> 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. Thanks. > >Btw, your workaround is not the best way to solve this, I think: each > >mode has a mode hook, precisely for these situations. Just define a > >function that binds that key and add that function to help-mode-hook. > > The key sequence needs binding only once. Won't help-mode-hook be called > every time a help command is invoked? Yes, but so what? Entering help mode is not exactly a real-time operation ;-)