dbus ChangeLog,1.1144,1.1145 configure.in,1.186,1.187
John Palmieri
johnp at kemper.freedesktop.org
Fri Oct 13 13:01:19 PDT 2006
Update of /cvs/dbus/dbus
In directory kemper:/tmp/cvs-serv31820
Modified Files:
ChangeLog configure.in
Log Message:
* configure.in: Check for gethostbyname first before we check for it
in libnsl. On gnu systems it is implemeneted
Index: ChangeLog
===================================================================
RCS file: /cvs/dbus/dbus/ChangeLog,v
retrieving revision 1.1144
retrieving revision 1.1145
diff -u -d -r1.1144 -r1.1145
--- ChangeLog 13 Oct 2006 16:26:47 -0000 1.1144
+++ ChangeLog 13 Oct 2006 20:01:16 -0000 1.1145
@@ -1,3 +1,8 @@
+2006-10-11 John (J5) Palmieri <johnp at 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 at redhat.com>
* dbus/dbus-connection.c
Index: configure.in
===================================================================
RCS file: /cvs/dbus/dbus/configure.in,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -d -r1.186 -r1.187
--- configure.in 12 Oct 2006 01:05:16 -0000 1.186
+++ configure.in 13 Oct 2006 20:01:16 -0000 1.187
@@ -508,7 +508,7 @@
#### 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)
More information about the dbus-commit
mailing list