summaryrefslogtreecommitdiff
path: root/libnet/configure.in
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2012-03-28 10:06:44 -0700
committerSam Roberts <vieuxtech@gmail.com>2012-03-28 10:06:44 -0700
commit5e251c2d3e0be304c916a4e1bd0f87a2695fe760 (patch)
treed81cc3a93344b505b538ee16330054c346b434c2 /libnet/configure.in
parent834e7fd2e5c98d8f9f00695cce347d07279e1955 (diff)
downloadlibnet-5e251c2d3e0be304c916a4e1bd0f87a2695fe760.tar.gz
Only use getifaddrs() if it exists. (reported by Dagobert Michelsen)
Diffstat (limited to 'libnet/configure.in')
-rw-r--r--libnet/configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/libnet/configure.in b/libnet/configure.in
index 7461197..d4d6da4 100644
--- a/libnet/configure.in
+++ b/libnet/configure.in
@@ -6,7 +6,7 @@ dnl All rights reserved.
dnl
dnl Process this file with autoconf to produce a configure script.
-AC_INIT(libnet, 1.1.6)
+AC_INIT(libnet, 1.1.6-rc3)
AC_MSG_RESULT(beginning autoconfiguration process for libnet-${PACKAGE_VERSION} ...)
AC_CANONICAL_SYSTEM
AC_CONFIG_SRCDIR([src/libnet_build_ip.c])
@@ -31,6 +31,7 @@ ifdef(
AC_CHECK_HEADERS(sys/sockio.h)
AC_CHECK_FUNCS([gethostbyname2])
+AC_CHECK_FUNCS([getifaddrs])
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T