3 ACLOCAL
="aclocal -I ${PWD}/m4"
4 AUTOHEADER
="autoheader"
5 AUTOMAKE
="automake -a -c --foreign"
7 ACINCLUDE_FILES
="lyxinclude.m4 libtool.m4 xforms.m4 qt.m4 gtk--.m4 gnome--.m4 gnome.m4 spell.m4 cygwin.m4 pkg.m4"
9 # Discover what version of automake we are using.
10 automake_version
=`$AUTOMAKE --version 2>/dev/null | head -n 1`
12 test "$automake_version" != "" && {
13 echo "Using $automake_version"
15 echo "LyX requires automake >= 1.5"
19 case $automake_version in
24 echo "This automake version is not supported by LyX."
25 echo "LyX only supports automake 1.[5-9]."
30 # Discover what version of autoconf we are using.
31 autoversion
=`$AUTOCONF --version 2>/dev/null | head -n 1`
33 test "$autoversion" != "" && {
34 echo "Using $autoversion"
36 echo "LyX requires autoconf >= 2.52"
42 EXTRA_ACINCLUDE_FILES
="lyxinclude25x.m4"
45 echo "This autoconf version is not supported by LyX."
46 echo "LyX only supports autoconf 2.5[2-9]."
51 echo -n "Locating GNU m4... "
53 for prog
in $M4 gm4 gnum4
m4; do
54 # continue if $prog generates error (e.g. does not exist)
55 ( $prog --version ) < /dev
/null
> /dev
/null
2>&1
56 if test $?
-ne 0 ; then continue; fi
58 # /dev/null input prevents a hang of the script for some m4 compilers (e.g. on FreeBSD)
59 case `$prog --version < /dev/null 2>&1` in
64 if test x
$GNUM4 = x
; then
71 # Delete old cache directories.
72 # automake will stop if their contents was created by an earlier version.
75 # Generate acinclude.m4
76 echo -n "Generate acinclude.m4... "
78 (cd config
; cat ${ACINCLUDE_FILES} ${EXTRA_ACINCLUDE_FILES} >..
/acinclude.
m4)
81 # Generate the Makefiles and configure files
82 if ( $ACLOCAL --version ) < /dev
/null
> /dev
/null
2>&1; then
83 echo "Building macros..."
86 ( cd $dir ; $ACLOCAL )
90 echo "aclocal not found -- aborting"
94 if ( $AUTOHEADER --version ) < /dev
/null
> /dev
/null
2>&1; then
95 echo "Building config header template..."
98 ( cd $dir ; $AUTOHEADER )
102 echo "autoheader not found -- aborting"
106 if ( $AUTOMAKE --version ) < /dev
/null
> /dev
/null
2>&1; then
107 echo "Building Makefile templates..."
110 ( cd $dir ; $AUTOMAKE )
114 echo "automake not found -- aborting"
118 if ( $AUTOCONF --version ) < /dev
/null
> /dev
/null
2>&1; then
119 echo "Building configure..."
122 ( cd $dir ; $AUTOCONF )
126 echo "autoconf not found -- aborting"
130 # Autogenerate lib/configure.m4.
131 echo -n "Building lib/configure ... "
133 $GNUM4 lib
/configure.
m4 > lib
/configure
134 chmod a
+x lib
/configure
138 echo 'run "./configure ; make"'