3 ACLOCAL
="aclocal -I m4 -I config"
4 AUTOHEADER
="autoheader"
5 AUTOMAKE
="automake --add-missing --copy --foreign"
8 # Discover what version of automake we are using.
9 automake_version
=`$AUTOMAKE --version 2>/dev/null | head -n 1`
11 test "$automake_version" != "" && {
12 echo "Using $automake_version"
14 echo "LyX requires automake >= 1.5"
18 case $automake_version in
19 *' '1.
[5-9]*|
*' '1.1[01]*)
23 echo "This automake version is not supported by LyX."
24 echo "LyX only supports automake 1.5 to 1.11."
29 # Discover what version of autoconf we are using.
30 autoversion
=`$AUTOCONF --version 2>/dev/null | head -n 1`
32 test "$autoversion" != "" && {
33 echo "Using $autoversion"
35 echo "LyX requires autoconf >= 2.59c"
41 *' '2.59[cd]|
*' '2.60[ab
]|
*' '2.6[0-3])
44 echo "This autoconf version is not supported by LyX."
45 echo "LyX only supports autoconf 2.59c-2.63."
50 # Delete old cache directories.
51 # automake will stop if their contents was created by an earlier version.
54 # Generate the Makefiles and configure files
55 echo "Building macros..."
56 if ( $ACLOCAL --version ) < /dev
/null
> /dev
/null
2>&1; then
59 echo "aclocal not found -- aborting"
63 echo "Building config header template..."
64 if ( $AUTOHEADER --version ) < /dev
/null
> /dev
/null
2>&1; then
67 echo "autoheader not found -- aborting"
71 echo "Building Makefile templates..."
72 if ( $AUTOMAKE --version ) < /dev
/null
> /dev
/null
2>&1; then
75 echo "automake not found -- aborting"
79 echo "Building configure..."
80 if ( $AUTOCONF --version ) < /dev
/null
> /dev
/null
2>&1; then
83 echo "autoconf not found -- aborting"
87 echo "Building po/POTFILES.in..."
88 make -s -f po
/Rules-lyx srcdir
=po top_srcdir
=. po
/POTFILES.
in
91 echo 'run "./configure ; make"'