mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
6878d03963
scripts if cmake is available. We need to always generate the scripts in order for the dual cmake/autotools support to work.
38 lines
1.2 KiB
Bash
Executable file
38 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
# Create MySQL autotools infrastructure
|
|
|
|
die() { echo "$@"; exit 1; }
|
|
|
|
# Handle "glibtoolize" (e.g., for native OS X autotools) as another
|
|
# name for "libtoolize". Use the first one, either name, found in PATH.
|
|
LIBTOOLIZE=libtoolize # Default
|
|
IFS="${IFS= }"; save_ifs="$IFS"; IFS=':'
|
|
for dir in $PATH
|
|
do
|
|
if test -x $dir/glibtoolize
|
|
then
|
|
LIBTOOLIZE=glibtoolize
|
|
break
|
|
elif test -x $dir/libtoolize
|
|
then
|
|
break
|
|
fi
|
|
done
|
|
IFS="$save_ifs"
|
|
|
|
rm -rf configure
|
|
aclocal || die "Can't execute aclocal"
|
|
autoheader || die "Can't execute autoheader"
|
|
# --force means overwrite ltmain.sh script if it already exists
|
|
$LIBTOOLIZE --automake --force --copy || die "Can't execute libtoolize"
|
|
|
|
# --add-missing instructs automake to install missing auxiliary files
|
|
# and --force to overwrite them if they already exist
|
|
automake --add-missing --force --copy || die "Can't execute automake"
|
|
autoconf || die "Can't execute autoconf"
|
|
# Do not use autotools generated configure directly. Instead, use a script
|
|
# that will either call CMake or original configure shell script at build
|
|
# time (CMake is preferred if installed).
|
|
mv configure configure.am
|
|
cp BUILD/cmake_configure.sh configure
|
|
chmod a+x configure
|