blob: a1b1998482eefdc74c366b765acc03f0de72297f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/sh
# Create MySQL autotools infrastructure
die() { echo "$@"; exit 1; }
# Added glibtoolize reference to make native OSX autotools work,
# we pick the first of glibtoolize/libtoolize we find in PATH
LIBTOOLIZE=libtoolize # Default
IFS="${IFS= }"; save_ifs="$IFS"; IFS=':'
for dir in $PATH
do
if test -f $dir/glibtoolize
then
LIBTOOLIZE=glibtoolize
break
elif test -f $dir/libtoolize
then
break
fi
done
IFS="$save_ifs"
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"
|