mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
558de9b377
svn:r684
12 lines
214 B
Bash
Executable File
12 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
LIBTOOLIZE=libtoolize
|
|
SYSNAME=`uname`
|
|
if [ "x$SYSNAME" = "xDarwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
aclocal -I m4 && \
|
|
autoheader && \
|
|
$LIBTOOLIZE && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|