* cons.saver.c: Define LINUX_CONS_SAVER_C so that some parts
[midnight-commander.git] / autogen.sh
blob77c7a9f3c0bd400e394379236ef3af869fe9d4c4
1 #! /bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 # Make it possible to specify path in the environment
5 : ${AUTOCONF=autoconf}
6 : ${AUTOHEADER=autoheader}
7 : ${AUTOMAKE=automake}
8 : ${ACLOCAL=aclocal}
9 : ${GETTEXTIZE=gettextize}
11 srcdir=`dirname $0`
12 test -z "$srcdir" && srcdir=.
15 cd $srcdir
17 # The autoconf cache (version after 2.52) is not reliable yet.
18 rm -rf autom4te.cache vfs/samba/autom4te.cache
20 # Ensure that gettext is reasonably new.
21 gettext_ver=`$GETTEXTIZE --version | sed -n '1s/^.* //p'`
23 case $gettext_ver in
24 0.10.3[89]) ;;
25 *) echo "Don't use gettext other than versions 0.10.38 and 0.10.39"
26 exit 1;;
27 esac
29 rm -rf intl
30 $GETTEXTIZE --copy --force >tmpout || exit 1
31 rm -f po/ChangeLog
32 mv po/ChangeLog~ po/ChangeLog
34 # Ugly way to parse the instructions gettexize gives us.
35 m4files="`cat tmpout | sed -n -e '/^Please/,/^from/s/^ *//p'`"
36 fromdir=`cat tmpout | sed -n -e '/^Please/,/^from/s/^from the \([^ ]*\) .*$/\1/p'`
37 rm tmpout
38 rm -rf gettext.m4
39 mkdir gettext.m4
40 for i in $m4files; do
41 cp -f $fromdir/$i gettext.m4
42 done
44 if test ! -d config; then
45 mkdir config || exit 1
48 $ACLOCAL -I gettext.m4 $ACLOCAL_FLAGS || \
49 $ACLOCAL $ACLOCAL_FLAGS || \
50 exit 1
51 $AUTOHEADER || exit 1
52 $AUTOCONF || exit 1
54 # Workaround for Automake 1.5 to ensure that depcomp is distributed.
55 $AUTOMAKE -a src/Makefile || exit 1
56 $AUTOMAKE -a || exit 1
58 cd vfs/samba || exit 1
59 date -u >include/stamp-h.in
60 $AUTOHEADER || exit 1
61 $AUTOCONF || exit 1
62 ) || exit 1
64 $srcdir/configure --cache-file=config.cache --enable-maintainer-mode "$@"