From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.devel Subject: Re: trunk build failure on Solaris 2.6 Date: Sat, 20 Oct 2007 13:05:52 -0400 Message-ID: <87ejfp7m33.fsf@stupidchicken.com> References: <871wbr4x1v.fsf@stupidchicken.com> <87y7dz4tsx.fsf@stupidchicken.com> <87myuenavw.fsf@stupidchicken.com> <200710192032.l9JKW1MI003082@oogie-boogie.ics.uci.edu> <87y7dyvnt2.fsf@stupidchicken.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1192900023 4010 80.91.229.12 (20 Oct 2007 17:07:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 20 Oct 2007 17:07:03 +0000 (UTC) Cc: emacs-devel@gnu.org To: YAMAMOTO Mitsuharu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Oct 20 19:07:03 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IjHmw-0000rb-Km for ged-emacs-devel@m.gmane.org; Sat, 20 Oct 2007 19:07:02 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IjHmp-0006as-8h for ged-emacs-devel@m.gmane.org; Sat, 20 Oct 2007 13:06:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IjHmm-0006Zb-Bw for emacs-devel@gnu.org; Sat, 20 Oct 2007 13:06:52 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IjHml-0006Y8-LD for emacs-devel@gnu.org; Sat, 20 Oct 2007 13:06:52 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IjHml-0006Xj-Fi for emacs-devel@gnu.org; Sat, 20 Oct 2007 13:06:51 -0400 Original-Received: from cyd.mit.edu ([18.115.2.24]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IjHmk-00074e-UK for emacs-devel@gnu.org; Sat, 20 Oct 2007 13:06:51 -0400 Original-Received: by cyd.mit.edu (Postfix, from userid 1000) id B59904E3B1; Sat, 20 Oct 2007 13:05:52 -0400 (EDT) In-Reply-To: (YAMAMOTO Mitsuharu's message of "Sat\, 20 Oct 2007 10\:42\:04 +0900") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 1) 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:81310 Archived-At: YAMAMOTO Mitsuharu writes: >>>>>> On Fri, 19 Oct 2007 16:42:33 -0400, Chong Yidong said: > >> Could a Mac maintainer try to find out why it's not working on that >> platform? > > As address queries via getaddrinfo are normally forwarded to a > daemon called lookupd on Mac OS X, I suspect it doesn't make sense > to call res_init before getaddrinfo on that platform in the first > place. Then this bit of code in the configure script should fail, but it apparently succeeds; that's why HAVE_LIBRESOLV is defined. LIBS="$LIBS -lresolv" AC_MSG_CHECKING(for res_init with -lresolv) AC_TRY_LINK([#include #include #include ], [res_init();], have_res_init=yes, have_res_init=no)