From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: Patch to fix working of autogen.sh Date: Sun, 28 Jan 2007 09:44:10 +0000 Message-ID: <87d54z4hat.fsf@ossau.uklinux.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1169977616 27873 80.91.229.12 (28 Jan 2007 09:46:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 28 Jan 2007 09:46:56 +0000 (UTC) To: Guile Development Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sun Jan 28 10:46:49 2007 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HB6ca-0004oG-Bm for guile-devel@m.gmane.org; Sun, 28 Jan 2007 10:46:48 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HB6cZ-0006Ox-PJ for guile-devel@m.gmane.org; Sun, 28 Jan 2007 04:46:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HB6aM-0005Tu-Nf for guile-devel@gnu.org; Sun, 28 Jan 2007 04:44:32 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HB6aI-0005Q3-GZ for guile-devel@gnu.org; Sun, 28 Jan 2007 04:44:29 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HB6aI-0005Pf-9w for guile-devel@gnu.org; Sun, 28 Jan 2007 04:44:26 -0500 Original-Received: from mail3.uklinux.net ([80.84.72.33]) by monty-python.gnu.org with esmtp (Exim 4.52) id 1HB6aH-0001c4-R7 for guile-devel@gnu.org; Sun, 28 Jan 2007 04:44:26 -0500 Original-Received: from laruns (host86-145-157-83.range86-145.btcentralplus.com [86.145.157.83]) by mail3.uklinux.net (Postfix) with ESMTP id 3D52640A30F for ; Sun, 28 Jan 2007 09:44:25 +0000 (UTC) Original-Received: from laruns (laruns [127.0.0.1]) by laruns (Postfix) with ESMTP id C06906F884 for ; Sun, 28 Jan 2007 09:44:10 +0000 (GMT) User-Agent: Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux) X-detected-kernel: Linux 2.4-2.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:6495 Archived-At: I propose to commit the patch below, to allow autogen.sh to work again. This is for 1.8.x and HEAD. The snapshot builder at ftp://ftp.dt.e-technik.uni-dortmund.de/pub/guile/snapshots/ uses autogen.sh, so hopefully this patch will also cause the 1.8.x and HEAD snapshots to start appearing again. (Doing AM_GNU_GETTEXT_VERSION causes autopoint to be run, which causes the creation of a po subdir, with various boilerplate files, but I see no harm in that.) Any comments before I commit this? Regards, Neil Index: ChangeLog =================================================================== RCS file: /cvsroot/guile/guile/guile-core/ChangeLog,v retrieving revision 1.488 diff -u -r1.488 ChangeLog --- ChangeLog 28 Jan 2007 09:36:51 -0000 1.488 +++ ChangeLog 28 Jan 2007 09:39:14 -0000 @@ -1,5 +1,11 @@ 2007-01-28 Neil Jerram + * configure.in: Do AM_GNU_GETTEXT_VERSION, so that autoreconf will + run autopoint. + + * acinclude.m4 (AM_INTL_SUBDIR): Provide dummy definition, to work + around current autoconf/automake/gettext bug. + * INSTALL: New upstream version. * ABOUT-NLS: New upstream version. Index: acinclude.m4 =================================================================== RCS file: /cvsroot/guile/guile/guile-core/acinclude.m4,v retrieving revision 1.18 diff -u -r1.18 acinclude.m4 --- acinclude.m4 6 Jun 2006 21:39:42 -0000 1.18 +++ acinclude.m4 28 Jan 2007 09:39:14 -0000 @@ -308,3 +308,5 @@ fi AC_LANG_RESTORE ])dnl ACX_PTHREAD + +AC_DEFUN([AM_INTL_SUBDIR], [])dnl Index: configure.in =================================================================== RCS file: /cvsroot/guile/guile/guile-core/configure.in,v retrieving revision 1.280 diff -u -r1.280 configure.in --- configure.in 15 Jan 2007 23:07:49 -0000 1.280 +++ configure.in 28 Jan 2007 09:39:15 -0000 @@ -706,6 +706,7 @@ #fi #AC_CHECK_FUNCS([bindtextdomain textdomain]) AM_GNU_GETTEXT([external], [need-ngettext]) +AM_GNU_GETTEXT_VERSION([0.16]) ### Some systems don't declare some functions. On such systems, we ### need to at least provide our own K&R-style declarations. _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://lists.gnu.org/mailman/listinfo/guile-devel