2 # Run this to generate all the initial makefiles, etc.
7 # Make it possible to specify path in the environment
9 : ${AUTOHEADER=autoheader}
10 : ${AUTOMAKE=automake}
12 : ${AUTOPOINT=autopoint}
13 : ${LIBTOOLIZE=libtoolize}
14 : ${XGETTEXT=xgettext}
17 test -z "$srcdir" && srcdir
=.
21 # Some shells don't propagate "set -e" to subshells.
24 $AUTOPOINT --version >/dev
/null
2>&1
25 if test $?
-ne 0; then
26 AUTOPOINT
=maint
/autopoint
31 # The autoconf cache (version after 2.52) is not reliable yet.
32 rm -rf autom4te.cache vfs
/samba
/autom4te.cache
34 if test ! -d config
; then
38 # Recreate intl directory.
40 $AUTOPOINT --force ||
exit 1
42 # Generate po/POTFILES.in
43 $XGETTEXT --keyword=_
--keyword=N_
--keyword=Q_
--output=- \
44 `find . -name '*.[ch]'` |
sed -ne '/^#:/{s/#://;s/:[0-9]*/\
46 grep -v '^$' |
sort |
uniq |
grep -v 'regex.c' >po
/POTFILES.
in
50 ACLOCAL_INCLUDES
="-I m4"
52 # Some old version of GNU build tools fail to set error codes.
53 # Check that they generate some of the files they should.
55 $ACLOCAL $ACLOCAL_INCLUDES $ACLOCAL_FLAGS
56 test -f aclocal.
m4 || \
57 { echo "aclocal failed to generate aclocal.m4" >&2; exit 1; }
60 test -f config.h.
in || \
61 { echo "autoheader failed to generate config.h.in" >&2; exit 1; }
64 test -f configure || \
65 { echo "autoconf failed to generate configure" >&2; exit 1; }
67 # Workaround for Automake 1.5 to ensure that depcomp is distributed.
68 if test "`$AUTOMAKE --version|awk '{print $NF;exit}'`" = '1.5' ; then
69 $AUTOMAKE -a src
/Makefile
72 test -f Makefile.
in || \
73 { echo "automake failed to generate Makefile.in" >&2; exit 1; }
76 date -u >include
/stamp-h.
in
79 test -f include
/config.h.
in || \
80 { echo "autoheader failed to generate vfs/samba/include/config.h.in" >&2; exit 1; }
83 test -f configure || \
84 { echo "autoconf failed to generate vfs/samba/configure" >&2; exit 1; }
87 $srcdir/maint
/version.sh
"$srcdir"
89 if test -x $srcdir/configure.mc
; then
90 $srcdir/configure.mc
"$@"