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