* screen.c: Make functions static whenever possible. Remove
[midnight-commander.git] / autogen.sh
blob981660cccf866ef145fd31b835dc8ac51b382527
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 if test ! -d config; then
35 mkdir config || exit 1
38 if test -f `aclocal --print-ac-dir`/gettext.m4; then
39 # gettext macro files are available to aclocal.
40 $ACLOCAL $ACLOCAL_FLAGS || exit 1
41 else
42 # gettext macro files are not available.
43 # Find them and copy to a local directory.
44 # Ugly way to parse the instructions gettexize gives us.
45 m4files="`cat tmpout | sed -n -e '/^Please/,/^from/s/^ *//p'`"
46 fromdir=`cat tmpout | sed -n -e '/^Please/,/^from/s/^from the \([^ ]*\) .*$/\1/p'`
47 rm tmpout
48 rm -rf gettext.m4
49 mkdir gettext.m4
50 for i in $m4files; do
51 cp -f $fromdir/$i gettext.m4
52 done
53 $ACLOCAL -I gettext.m4 $ACLOCAL_FLAGS || exit 1
56 $AUTOHEADER || exit 1
57 $AUTOCONF || exit 1
59 # Workaround for Automake 1.5 to ensure that depcomp is distributed.
60 $AUTOMAKE -a src/Makefile || exit 1
61 $AUTOMAKE -a || exit 1
63 cd vfs/samba || exit 1
64 date -u >include/stamp-h.in
65 $AUTOHEADER || exit 1
66 $AUTOCONF || exit 1
67 ) || exit 1
69 $srcdir/configure --cache-file=config.cache --enable-maintainer-mode "$@"