1998-11-23 01:04:09 +03:00
|
|
|
#! /bin/sh
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
2002-09-26 01:53:38 +04:00
|
|
|
# Don't ignore errors.
|
|
|
|
set -e
|
|
|
|
|
2001-07-31 22:05:26 +04:00
|
|
|
# Make it possible to specify path in the environment
|
|
|
|
: ${AUTOCONF=autoconf}
|
|
|
|
: ${AUTOHEADER=autoheader}
|
|
|
|
: ${AUTOMAKE=automake}
|
|
|
|
: ${ACLOCAL=aclocal}
|
|
|
|
: ${GETTEXTIZE=gettextize}
|
2002-09-14 02:33:44 +04:00
|
|
|
: ${AUTOPOINT=autopoint}
|
2004-01-27 00:40:30 +03:00
|
|
|
: ${XGETTEXT=xgettext}
|
2001-07-31 22:05:26 +04:00
|
|
|
|
1998-03-23 10:12:13 +03:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
(
|
2002-09-26 01:53:38 +04:00
|
|
|
# Some shells don't propagate "set -e" to subshells.
|
|
|
|
set -e
|
|
|
|
|
2003-12-03 01:53:07 +03:00
|
|
|
cd "$srcdir"
|
2001-04-06 22:01:31 +04:00
|
|
|
|
2001-09-30 23:51:23 +04:00
|
|
|
# The autoconf cache (version after 2.52) is not reliable yet.
|
|
|
|
rm -rf autom4te.cache vfs/samba/autom4te.cache
|
2001-09-12 23:18:38 +04:00
|
|
|
|
2002-05-14 21:00:22 +04:00
|
|
|
if test ! -d config; then
|
2002-09-26 01:53:38 +04:00
|
|
|
mkdir config
|
2002-05-14 21:00:22 +04:00
|
|
|
fi
|
|
|
|
|
2001-07-31 22:05:26 +04:00
|
|
|
# Ensure that gettext is reasonably new.
|
2002-10-29 23:58:14 +03:00
|
|
|
gettext_ver=`$GETTEXTIZE --version | \
|
|
|
|
sed '2,$d; # remove all but the first line
|
|
|
|
s/.* //; # take text after the last space
|
|
|
|
s/-.*//; # strip "-pre" or "-rc" at the end
|
2003-02-04 00:19:57 +03:00
|
|
|
s/\([^.][^.]*\)/0\1/g; # prepend 0 to every token
|
2003-02-20 22:48:03 +03:00
|
|
|
s/0\([^.][^.]\)/\1/g; # strip leading 0 from long tokens
|
|
|
|
s/$/.00.00/; # add .00.00 for short version strings
|
2002-10-29 23:58:14 +03:00
|
|
|
s/\.//g; # remove dots
|
2003-02-20 22:48:03 +03:00
|
|
|
s/\(......\).*/\1/; # leave only 6 leading digits
|
2002-10-29 23:58:14 +03:00
|
|
|
'`
|
|
|
|
|
2003-12-03 01:53:07 +03:00
|
|
|
if test -z "$gettext_ver"; then
|
|
|
|
echo "Cannot determine version of gettext" 2>&1
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$gettext_ver" -lt 01038; then
|
2002-04-09 17:16:39 +04:00
|
|
|
echo "Don't use gettext older than 0.10.38" 2>&1
|
|
|
|
exit 1
|
|
|
|
fi
|
2001-07-31 22:05:26 +04:00
|
|
|
|
2002-05-14 18:16:47 +04:00
|
|
|
rm -rf intl
|
2003-12-03 01:53:07 +03:00
|
|
|
if test "$gettext_ver" -ge 01100; then
|
|
|
|
if test "$gettext_ver" -lt 01105; then
|
2002-10-01 01:15:46 +04:00
|
|
|
echo "Upgrade gettext to at least 0.11.5 or downgrade to 0.10.40" 2>&1
|
2002-09-14 02:33:44 +04:00
|
|
|
exit 1
|
2002-05-14 18:16:47 +04:00
|
|
|
fi
|
2003-05-20 20:12:26 +04:00
|
|
|
$AUTOPOINT --force || exit 1
|
2002-05-14 18:16:47 +04:00
|
|
|
else
|
2002-10-29 23:58:14 +03:00
|
|
|
$GETTEXTIZE --copy --force || exit 1
|
2002-05-14 18:16:47 +04:00
|
|
|
if test -e po/ChangeLog~; then
|
|
|
|
rm -f po/ChangeLog
|
|
|
|
mv po/ChangeLog~ po/ChangeLog
|
|
|
|
fi
|
2002-04-09 17:16:39 +04:00
|
|
|
fi
|
2001-07-31 22:05:26 +04:00
|
|
|
|
2004-01-27 00:40:30 +03:00
|
|
|
# Generate po/POTFILES.in
|
2004-03-05 11:30:22 +03:00
|
|
|
$XGETTEXT --keyword=_ --keyword=N_ --output=- `find . -name '*.[ch]'` | \
|
|
|
|
sed -ne '/^#:/{s/#://;s/:[0-9]*/\n/g;s/ //g;p;}' | \
|
|
|
|
grep -v '^$' | sort | uniq | grep -v 'regex.c' >po/POTFILES.in
|
2004-01-27 00:40:30 +03:00
|
|
|
|
2002-09-17 20:13:25 +04:00
|
|
|
ACLOCAL_INCLUDES="-I m4"
|
2002-07-28 10:39:48 +04:00
|
|
|
|
2002-01-28 19:22:04 +03:00
|
|
|
# Some old version of GNU build tools fail to set error codes.
|
|
|
|
# Check that they generate some of the files they should.
|
|
|
|
|
2002-09-26 01:53:38 +04:00
|
|
|
$ACLOCAL $ACLOCAL_INCLUDES $ACLOCAL_FLAGS
|
2002-01-28 19:22:04 +03:00
|
|
|
test -f aclocal.m4 || \
|
|
|
|
{ echo "aclocal failed to generate aclocal.m4" 2>&1; exit 1; }
|
|
|
|
|
2001-07-31 22:05:26 +04:00
|
|
|
$AUTOHEADER || exit 1
|
2002-01-28 19:22:04 +03:00
|
|
|
test -f config.h.in || \
|
|
|
|
{ echo "autoheader failed to generate config.h.in" 2>&1; exit 1; }
|
|
|
|
|
2001-07-31 22:05:26 +04:00
|
|
|
$AUTOCONF || exit 1
|
2002-01-28 19:22:04 +03:00
|
|
|
test -f configure || \
|
|
|
|
{ echo "autoconf failed to generate configure" 2>&1; exit 1; }
|
2001-09-13 00:45:46 +04:00
|
|
|
|
|
|
|
# Workaround for Automake 1.5 to ensure that depcomp is distributed.
|
2002-09-26 01:53:38 +04:00
|
|
|
$AUTOMAKE -a src/Makefile
|
|
|
|
$AUTOMAKE -a
|
2002-01-28 19:22:04 +03:00
|
|
|
test -f Makefile.in || \
|
|
|
|
{ echo "automake failed to generate Makefile.in" 2>&1; exit 1; }
|
2001-04-06 22:01:31 +04:00
|
|
|
|
2002-09-26 01:53:38 +04:00
|
|
|
cd vfs/samba
|
2001-02-08 03:01:21 +03:00
|
|
|
date -u >include/stamp-h.in
|
2002-01-28 19:22:04 +03:00
|
|
|
|
2002-09-26 01:53:38 +04:00
|
|
|
$AUTOHEADER
|
2002-01-28 19:22:04 +03:00
|
|
|
test -f include/config.h.in || \
|
|
|
|
{ echo "autoheader failed to generate vfs/samba/include/config.h.in" 2>&1; exit 1; }
|
|
|
|
|
2002-09-26 01:53:38 +04:00
|
|
|
$AUTOCONF
|
2002-01-28 19:22:04 +03:00
|
|
|
test -f configure || \
|
|
|
|
{ echo "autoconf failed to generate vfs/samba/configure" 2>&1; exit 1; }
|
2000-08-18 08:16:25 +04:00
|
|
|
) || exit 1
|
1998-03-23 10:12:13 +03:00
|
|
|
|
2002-11-29 09:39:41 +03:00
|
|
|
if test -x $srcdir/configure.mc; then
|
|
|
|
$srcdir/configure.mc "$@"
|
|
|
|
else
|
|
|
|
$srcdir/configure --cache-file=config.cache --enable-maintainer-mode "$@"
|
|
|
|
fi
|