mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
51fde16666
svn:r272
11 lines
191 B
Bash
11 lines
191 B
Bash
#!/bin/sh
|
|
LIBTOOLIZE=libtoolize
|
|
if [ "$(uname)" == "Darwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
aclocal && \
|
|
autoheader && \
|
|
$LIBTOOLIZE && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|