X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=autogen.sh;h=b9b81f6d76441307c0a87eacefd64e33a0539079;hb=e54ae72e5fac6f750c3f7972c74bb42b57f3a049;hp=b30a91d19ef6b23c70a5424ddff7e0d1f416922c;hpb=5971c1a9f13e7e132377ea1fa5213c51210ee68d;p=lyx.git diff --git a/autogen.sh b/autogen.sh index b30a91d19e..b9b81f6d76 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,10 +1,9 @@ #!/bin/sh -ACLOCAL="aclocal -I ${PWD}/m4" +ACLOCAL="aclocal -I m4 -I config" AUTOHEADER="autoheader" AUTOMAKE="automake --add-missing --copy --foreign" AUTOCONF="autoconf" -ACINCLUDE_FILES="lyxinclude.m4 libtool.m4 pkg.m4 qt4.m4 spell.m4" # Discover what version of automake we are using. automake_version=`$AUTOMAKE --version 2>/dev/null | head -n 1` @@ -12,17 +11,17 @@ automake_version=`$AUTOMAKE --version 2>/dev/null | head -n 1` test "$automake_version" != "" && { echo "Using $automake_version" } || { - echo "LyX requires automake >= 1.9" + echo "LyX requires automake >= 1.5" exit 1 } case $automake_version in - *' '1.9*|*' '1.10*) + *' '1.[5-9]*|*' '1.10*) ;; *) echo "This automake version is not supported by LyX." - echo "LyX only supports automake 1.9 and 1.10." + echo "LyX only supports automake 1.5 to 1.10." exit 1 ;; esac @@ -71,12 +70,6 @@ fi # automake will stop if their contents was created by an earlier version. rm -rf autom4te.cache -# Generate acinclude.m4 -echo -n "Generate acinclude.m4... " -rm -f acinclude.m4 -(cd config ; cat ${ACINCLUDE_FILES} ${EXTRA_ACINCLUDE_FILES} >../acinclude.m4) -echo "done." - # Generate the Makefiles and configure files if ( $ACLOCAL --version ) < /dev/null > /dev/null 2>&1; then echo "Building macros..."