mirror of
https://github.com/cuberite/libevent.git
synced 2025-08-04 01:36:23 -04:00
r16578@catbus: nickm | 2007-11-08 12:34:51 -0500
The == operator in shell is a bash-ism; do not use it in autogen.sh svn:r503
This commit is contained in:
parent
8fd2124ef9
commit
cabcd62f38
@ -46,4 +46,5 @@ Changes in current version:
|
|||||||
o Do not require #include <sys/types.h> before #include <event.h>.
|
o Do not require #include <sys/types.h> before #include <event.h>.
|
||||||
o Add new evutil_timer* functions to wrap (or replace) the regular timeval manipulation functions.
|
o Add new evutil_timer* functions to wrap (or replace) the regular timeval manipulation functions.
|
||||||
o Fix many build issues when using the Microsoft C compiler.
|
o Fix many build issues when using the Microsoft C compiler.
|
||||||
|
o Remove a bash-ism in autogen.sh
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
LIBTOOLIZE=libtoolize
|
LIBTOOLIZE=libtoolize
|
||||||
SYSNAME=`uname`
|
SYSNAME=`uname`
|
||||||
if [ "x$SYSNAME" == "xDarwin" ] ; then
|
if [ "x$SYSNAME" = "xDarwin" ] ; then
|
||||||
LIBTOOLIZE=glibtoolize
|
LIBTOOLIZE=glibtoolize
|
||||||
fi
|
fi
|
||||||
aclocal && \
|
aclocal && \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user