mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
fb47d6581b
BitKeeper/deleted/.del-configure.in: Delete: storage/innobase/configure.in BUILD/FINISH.sh: Removed work for Innodb's configure BUILD/autorun.sh: Removed pieces for Innodb's build storage/innobase/Makefile.am: Removed ib_config.h needs storage/innobase/include/Makefile.i: Expanded includes. storage/innobase/include/univ.i: Removed ib_config need storage/innobase/plug.in: Added support taken from configure.in for building Innodb
22 lines
693 B
Bash
Executable file
22 lines
693 B
Bash
Executable file
#!/bin/sh
|
|
# Create MySQL autotools infrastructure
|
|
|
|
die() { echo "$@"; exit 1; }
|
|
|
|
# Added glibtoolize reference to make native OSX autotools work
|
|
if [ -f /usr/bin/glibtoolize ]
|
|
then
|
|
LIBTOOLIZE=glibtoolize
|
|
else
|
|
LIBTOOLIZE=libtoolize
|
|
fi
|
|
|
|
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 || 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 || die "Can't execute automake"
|
|
autoconf || die "Can't execute autoconf"
|