unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* guile-cvs on Debian/unstable
@ 2002-10-10 12:54 Jan Nieuwenhuizen
  2002-10-10 15:44 ` Rob Browning
  0 siblings, 1 reply; 2+ messages in thread
From: Jan Nieuwenhuizen @ 2002-10-10 12:54 UTC (permalink / raw)



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  <janneke@gnu.org>

	* 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 <janneke@gnu.org> | 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


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: guile-cvs on Debian/unstable
  2002-10-10 12:54 guile-cvs on Debian/unstable Jan Nieuwenhuizen
@ 2002-10-10 15:44 ` Rob Browning
  0 siblings, 0 replies; 2+ messages in thread
From: Rob Browning @ 2002-10-10 15:44 UTC (permalink / raw)
  Cc: guile-devel

Jan Nieuwenhuizen <janneke@gnu.org> writes:

> 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?

I am, but I haven't built guile-1.6 since I upgraded to the latest
auto* tools -- actually I'm not even sure I have upgraded as far as
you indicate above.  However I did put a fix into CVS HEAD for to
allow newer versions of autoconf the other day.  I have to backport
that to 1.6.

I'll see about your patch unless someone else gets to it sooner.  I
think perhaps we should switch our checking in autogen to be disallow
known bad versions (i.e. autoconf < 2.5), rather than only allowing
known good versions.  Otherwise we're going to get complaints all the
time as newer versions of the tools are released.

-- 
Rob Browning
rlb @defaultvalue.org, @linuxdevel.com, and @debian.org
Previously @cs.utexas.edu
GPG=1C58 8B2C FB5E 3F64 EA5C  64AE 78FE E5FE F0CB A0AD


_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-devel


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2002-10-10 15:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-10-10 12:54 guile-cvs on Debian/unstable Jan Nieuwenhuizen
2002-10-10 15:44 ` Rob Browning

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).