X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=autogen.sh;h=afad75b4835296cf53041edf9fe84f10e08bedbb;hb=2de99bed22564af4d535bdfb61b07a0745e71d76;hp=c94a14dc63c25910fb72b7595d3928e2fc2a8a01;hpb=a5b1022b9f3358da18464c5b589cf86b376cf677;p=lyx.git diff --git a/autogen.sh b/autogen.sh index c94a14dc63..afad75b483 100755 --- a/autogen.sh +++ b/autogen.sh @@ -2,9 +2,9 @@ ACLOCAL="aclocal -I ${PWD}/m4" AUTOHEADER="autoheader" -AUTOMAKE="automake --add-missing --copy --force-missing --foreign" +AUTOMAKE="automake --add-missing --copy --foreign" AUTOCONF="autoconf" -ACINCLUDE_FILES="lyxinclude.m4 libtool.m4 xforms.m4 qt.m4 gtk--.m4 gnome--.m4 gnome.m4 spell.m4 cygwin.m4 pkg.m4" +ACINCLUDE_FILES="lyxinclude.m4 libtool.m4 pkg.m4 qt.m4 qt4.m4 spell.m4" # Discover what version of automake we are using. automake_version=`$AUTOMAKE --version 2>/dev/null | head -n 1` @@ -12,21 +12,21 @@ automake_version=`$AUTOMAKE --version 2>/dev/null | head -n 1` 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]." - exit 1 - ;; + echo "LyX only supports automake 1.9." + exit 1 + ;; esac - + # Discover what version of autoconf we are using. autoversion=`$AUTOCONF --version 2>/dev/null | head -n 1` @@ -36,14 +36,14 @@ test "$autoversion" != "" && { echo "LyX requires autoconf >= 2.52" exit 1 } - + case $autoversion in - *' '2.5[2-9]) + *' '2.5[2-9]|*' '2.60[ab]|*' '2.6[0-1]) EXTRA_ACINCLUDE_FILES="lyxinclude25x.m4" ;; *) echo "This autoconf version is not supported by LyX." - echo "LyX only supports autoconf 2.5[2-9]." + echo "LyX only supports autoconf 2.52-2.61." exit 1 ;; esac @@ -127,13 +127,6 @@ else exit 1 fi -# Autogenerate lib/configure.m4. -echo -n "Building lib/configure ... " -rm -f lib/configure -$GNUM4 lib/configure.m4 > lib/configure -chmod a+x lib/configure -echo "done." - echo echo 'run "./configure ; make"' echo