mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
11 lines
208 B
Bash
11 lines
208 B
Bash
#!/bin/sh
|
|
LIBTOOLIZE=libtoolize
|
|
SYSNAME=`uname`
|
|
if [ "x$SYSNAME" = "xDarwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
aclocal && \
|
|
autoheader && \
|
|
$LIBTOOLIZE && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|