From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Rob Browning Newsgroups: gmane.lisp.guile.devel Subject: Debian package build problems with 2.0.9 (from git) Date: Sat, 15 Jun 2013 13:06:43 -0500 Message-ID: <87ip1fuu30.fsf@trouble.defaultvalue.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1371319614 20311 80.91.229.3 (15 Jun 2013 18:06:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 15 Jun 2013 18:06:54 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Jun 15 20:06:55 2013 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UnusH-0004gA-Mp for guile-devel@m.gmane.org; Sat, 15 Jun 2013 20:06:53 +0200 Original-Received: from localhost ([::1]:52668 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnusH-0008WU-7J for guile-devel@m.gmane.org; Sat, 15 Jun 2013 14:06:53 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38499) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnusC-0008WN-7a for guile-devel@gnu.org; Sat, 15 Jun 2013 14:06:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UnusA-0004tw-TB for guile-devel@gnu.org; Sat, 15 Jun 2013 14:06:48 -0400 Original-Received: from defaultvalue.org ([70.85.129.156]:50606) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UnusA-0004sK-P2 for guile-devel@gnu.org; Sat, 15 Jun 2013 14:06:46 -0400 Original-Received: from trouble.defaultvalue.org (localhost [127.0.0.1]) (Authenticated sender: rlb@defaultvalue.org) by defaultvalue.org (Postfix) with ESMTPSA id 15D3C90D24 for ; Sat, 15 Jun 2013 13:06:44 -0500 (CDT) Original-Received: by trouble.defaultvalue.org (Postfix, from userid 1000) id AAC8214E064; Sat, 15 Jun 2013 13:06:43 -0500 (CDT) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 70.85.129.156 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:16484 Archived-At: It looks like the newer libgc is headed for unstable, and I'm working on the Debian packages for 2.0.9, where I've run into a couple of problems. The first might be a problem caused by my packaging, but in case not, the build from git fails because doc/ref/effective-version.texi doesn't exist when it tries to build guile.info. Here's how I fixed that for now in doc/ref/Makefile.am: -guile.texi: libguile-autoconf.texi +guile.texi: effective-version.texi libguile-autoconf.texi The second problem is that the net-db.test is failing: Running net-db.test unexpected error code: -11 "System error" FAIL: net-db.test: getaddrinfo: no name But it looks like at least on my current (Debian unstable) system, that may be the normal behavior. This program: #include #include #include #include int main(int argc, char **argv) { struct addrinfo c_hints, *c_result; memset(&c_hints, 0, sizeof (c_hints)); const int err = getaddrinfo ("does-not-exist", NULL, &c_hints, &c_result); if (err == 0) freeaddrinfo (c_result); printf("err: %d\n", err); printf("errno: %d\n", errno); return 0; } Produces this output: $ ./foo err: -11 errno: 2 So I'm wondering if there's a problem with my test code, my system, or if the test might need another exception here: (and (or (= errcode EAI_NONAME) (and (defined? 'EAI_NODATA) ; GNU extension (= errcode EAI_NODATA)) (= errcode EAI_AGAIN) Thanks -- Rob Browning rlb @defaultvalue.org and @debian.org GPG as of 2011-07-10 E6A9 DA3C C9FD 1FF8 C676 D2C4 C0F0 39E9 ED1B 597A GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4