summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2006-10-13 20:01:16 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2006-10-13 20:01:16 +0000
commitf602dcb89af7b8074953c351bdc467137c4809a1 (patch)
treed88171ba4fcd777064e2af0209ff69cacd2e5866
parent2f2a3334de3e7a3ca1d4faa725f37ff6823c6a3b (diff)
* configure.in: Check for gethostbyname first before we check for it
in libnsl. On gnu systems it is implemeneted
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9dec4b82..345b4dd0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-10-11 John (J5) Palmieri <johnp@redhat.com>
+
+ * configure.in: Check for gethostbyname first before we check for it
+ in libnsl. On gnu systems it is implemeneted
+
2006-10-13 Havoc Pennington <hp@redhat.com>
* dbus/dbus-connection.c
diff --git a/configure.in b/configure.in
index 2af29b3c..1c6ece0c 100644
--- a/configure.in
+++ b/configure.in
@@ -508,7 +508,7 @@ fi
#### Various functions
AC_CHECK_LIB(socket,socket)
-AC_CHECK_LIB(nsl,gethostbyname)
+AC_CHECK_FUNC(gethostbyname,,[AC_CHECK_LIB(nsl,gethostbyname)])
AC_CHECK_FUNCS(vsnprintf vasprintf nanosleep usleep poll setenv unsetenv socketpair getgrouplist fpathconf)