mariadb/bdb/dist/s_config

46 lines
1.2 KiB
Text
Raw Normal View History

2001-03-05 01:42:05 +01:00
#!/bin/sh -
2002-10-30 12:57:05 +01:00
# $Id: s_config,v 1.9 2002/05/20 19:18:13 bostic Exp $
2001-03-05 01:42:05 +01:00
#
# Build the autoconfiguration files.
2002-10-30 12:57:05 +01:00
trap 'rm -f aclocal.m4 ; exit 0' 0 1 2 3 13 15
msgac="# DO NOT EDIT: automatically built by dist/s_config."
2001-03-05 01:42:05 +01:00
. ./RELEASE
echo "Building aclocal.m4"
2002-10-30 12:57:05 +01:00
(echo "$msgac" &&
2001-03-05 01:42:05 +01:00
echo "AC_DEFUN(AM_VERSION_SET, [" &&
echo "AC_SUBST(DB_VERSION_MAJOR)" &&
echo "DB_VERSION_MAJOR=$DB_VERSION_MAJOR" &&
echo "AC_SUBST(DB_VERSION_MINOR)" &&
echo "DB_VERSION_MINOR=$DB_VERSION_MINOR" &&
echo "AC_SUBST(DB_VERSION_PATCH)" &&
echo "DB_VERSION_PATCH=$DB_VERSION_PATCH" &&
2002-10-30 12:57:05 +01:00
echo "AC_SUBST(DB_VERSION_UNIQUE_NAME)" &&
echo "DB_VERSION_UNIQUE_NAME=$DB_VERSION_UNIQUE_NAME" &&
2001-03-05 01:42:05 +01:00
echo "AC_SUBST(DB_VERSION_STRING)" &&
echo "DB_VERSION_STRING=\"\\\"$DB_VERSION_STRING\\\"\"" &&
2002-10-30 12:57:05 +01:00
echo "])" &&
cat aclocal/*.ac aclocal_java/*.ac) > aclocal.m4
2001-03-05 01:42:05 +01:00
2002-10-30 12:57:05 +01:00
echo "Running autoheader to build config.hin"
2001-03-05 01:42:05 +01:00
rm -f config.hin
2002-10-30 12:57:05 +01:00
autoheader
2001-03-05 01:42:05 +01:00
chmod 444 config.hin
2002-10-30 12:57:05 +01:00
echo "Running autoconf to build configure"
2001-03-05 01:42:05 +01:00
rm -f configure
2002-10-30 12:57:05 +01:00
autoconf
# Edit version information we couldn't pre-compute.
(echo "1,\$s/__EDIT_DB_VERSION__/$DB_VERSION/g" &&
echo "w" &&
echo "q") | ed configure
rm -rf autom4te.cache
chmod 555 configure
2001-03-05 01:42:05 +01:00
2002-10-30 12:57:05 +01:00
chmod 555 config.guess config.sub install-sh