From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jan Nieuwenhuizen Newsgroups: gmane.lisp.guile.devel Subject: guile-cvs on Debian/unstable Date: Thu, 10 Oct 2002 14:54:16 +0200 Organization: Jan at Peder Sender: guile-devel-admin@gnu.org Message-ID: <87wuoq3153.fsf@peder.flower> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1034254681 15065 127.0.0.1 (10 Oct 2002 12:58:01 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 10 Oct 2002 12:58:01 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17zct5-0003un-00 for ; Thu, 10 Oct 2002 14:58:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17zcqO-0004qA-00; Thu, 10 Oct 2002 08:55:12 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17zcq7-0004MS-00 for guile-devel@gnu.org; Thu, 10 Oct 2002 08:54:55 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17zcpc-0003Oa-00 for guile-devel@gnu.org; Thu, 10 Oct 2002 08:54:54 -0400 Original-Received: from node-d-3053.a2000.nl ([62.195.48.83] helo=peder.flower) by monty-python.gnu.org with esmtp (Exim 4.10) id 17zcpb-0003N1-00 for guile-devel@gnu.org; Thu, 10 Oct 2002 08:54:23 -0400 Original-Received: from localhost.localdomain ([127.0.0.1] helo=peder.flower) by peder.flower with esmtp (Exim 3.36 #1 (Debian)) id 17zcpU-0004TJ-00; Thu, 10 Oct 2002 14:54:16 +0200 Original-To: guile-devel@gnu.org Original-Lines: 70 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.2 (i386-debian-linux-gnu) Errors-To: guile-devel-admin@gnu.org X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Developers list for Guile, the GNU extensibility library List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.lisp.guile.devel:1511 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:1511 It seems that Guile won't accept automake-1.7; and automake 1.6a is not detected on Debian GNU/Linux. Below the patch I used. I must be missing something, is none of you running Debian? Greetings, Jan. 2002-10-10 Jan Nieuwenhuizen * autogen.sh: Accept automake-1.6a, for Debian unstable. * guile-aclocal.sh: Likewise for aclocal-1.6a. Index: autogen.sh =================================================================== RCS file: /cvsroot/guile/guile/guile-core/autogen.sh,v retrieving revision 1.27 diff -p -u -r1.27 autogen.sh --- autogen.sh 5 Oct 2002 11:52:07 -0000 1.27 +++ autogen.sh 10 Oct 2002 12:48:15 -0000 @@ -76,7 +76,7 @@ fi # configure.in reqs automake-1.6; try to find it -for suf in "-1.6" "1.6" "" false; do +for suf in "-1.6" "1.6" "-1.6a" "" false; do version=`automake$suf --version 2>/dev/null | head -1 | awk '{print $NF}' | awk -F. '{print $1 * 10 + $2}'` if test "0$version" -eq 16; then automake=automake$suf Index: guile-aclocal.sh =================================================================== RCS file: /cvsroot/guile/guile/guile-core/guile-aclocal.sh,v retrieving revision 1.2 diff -p -u -r1.2 guile-aclocal.sh --- guile-aclocal.sh 26 Apr 2002 18:05:08 -0000 1.2 +++ guile-aclocal.sh 10 Oct 2002 12:48:15 -0000 @@ -4,4 +4,23 @@ # invocation of aclocal is specified. It is called from both # autogen.sh and the Makefile. -aclocal -I guile-config +################################################################ + +#detect aclocal version + + +# configure.in reqs aclocal-1.6; try to find it +for suf in "-1.6" "1.6" "-1.6a" "" false; do + version=`aclocal$suf --version 2>/dev/null | head -1 | awk '{print $NF}' | awk -F. '{print $1 * 10 + $2}'` + if test "0$version" -eq 16; then + aclocal=aclocal$suf + break + fi +done + +if test -z "$aclocal"; then + echo "ERROR: Please install aclocal 1.6.x" + exit 1 +fi + +$aclocal -I guile-config -- Jan Nieuwenhuizen | GNU LilyPond - The music typesetter http://www.xs4all.nl/~jantien | http://www.lilypond.org _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel