0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 06:41:03 +08:00

Minor buid system tunning

This commit is contained in:
malosek 2010-02-20 21:03:12 +01:00
parent 740e531fbb
commit ff99d753ae
2 changed files with 8 additions and 1 deletions

View File

@ -26,6 +26,14 @@ if [ $? -ne 0 ]; then
exit 1
fi
libtool --version > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo
echo "Could not find libtool, libtool.m4 macro is probably not installed."
echo
exit 1
fi
mkdir -p config
if [ $? -ne 0 ]; then
echo

View File

@ -613,7 +613,6 @@ AC_SUBST(LIBZMQ_EXTRA_LDFLAGS)
# Checks for library functions.
AC_FUNC_MALLOC
AC_TYPE_SIGNAL
AC_CHECK_FUNCS(perror gettimeofday memset socket getifaddrs freeifaddrs)