From: John (J5) Palmieri Date: Thu, 28 Feb 2008 18:18:03 +0000 (-0500) Subject: define _AI_ADDRCONFIG if not defined so that we can compile with an older glibc X-Git-Tag: dbus-1.2.1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3250072c6e46961e2979c875ce07697ef37206c7;p=thirdparty%2Fdbus.git define _AI_ADDRCONFIG if not defined so that we can compile with an older glibc --- diff --git a/ChangeLog b/ChangeLog index 901e0b0ce..1fcc59573 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-28 John (J5) Palmieri + + * dbus/dbus-sysdeps-unix.c: define _AI_ADDRCONFIG as 0 if not + defined so that we can compile with an older glibc + 2008-02-26 John (J5) Palmieri * Released 1.1.20 diff --git a/dbus/dbus-sysdeps-unix.c b/dbus/dbus-sysdeps-unix.c index 7db70fee4..d9a9030c3 100644 --- a/dbus/dbus-sysdeps-unix.c +++ b/dbus/dbus-sysdeps-unix.c @@ -75,6 +75,10 @@ #define O_BINARY 0 #endif +#ifndef _AI_ADDRCONFIG +#define _AI_ADDRCONFIG 0 +#endif + #ifndef HAVE_SOCKLEN_T #define socklen_t int #endif