On Wednesday 28 December 2005 01:17, Lars Gullik Bjønnes wrote:
> Georg Baum <[EMAIL PROTECTED]> writes:
> | Does this mean that atomake 1.7 is not supported anymore?
>
> Too old... If we want to support it we have to fix the Mac paths...
> they are longer than 99 characters. (old tar formats cannot handle that)

IMHO fixing the Mac paths is too much work. automake 1.8 does not work either, 
so I propose to apply the attached patch. OK?


Georg


Index: ChangeLog
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/ChangeLog,v
retrieving revision 1.1039
diff -u -p -r1.1039 ChangeLog
--- ChangeLog	23 Dec 2005 19:00:35 -0000	1.1039
+++ ChangeLog	28 Dec 2005 09:25:10 -0000
@@ -1,3 +1,7 @@
+2005-12-28  Georg Baum  <[EMAIL PROTECTED]>
+
+	* autogen.sh: require automake 1.9
+
 2005-12-23  Lars Gullik Bjonnes  <[EMAIL PROTECTED]>
 
 	* configure.ac: pre3
Index: autogen.sh
===================================================================
RCS file: /usr/local/lyx/cvsroot/lyx-devel/autogen.sh,v
retrieving revision 1.61
diff -u -p -r1.61 autogen.sh
--- autogen.sh	23 Dec 2005 18:16:17 -0000	1.61
+++ autogen.sh	28 Dec 2005 09:25:10 -0000
@@ -12,17 +12,17 @@ automake_version=`$AUTOMAKE --version 2>
 test "$automake_version" != "" && {
     echo "Using $automake_version"
 } || {
-    echo "LyX requires automake >= 1.5"
+    echo "LyX requires automake >= 1.9"
     exit 1
 }
 
 case $automake_version in
-    *' '1.[5-9]*)
+    *' '1.9*)
 	;;
     *)
     
 	echo "This automake version is not supported by LyX."
-        echo "LyX only supports automake 1.[5-9]."
+        echo "LyX only supports automake 1.9."
         exit 1
         ;;
 esac

Reply via email to