From 3250072c6e46961e2979c875ce07697ef37206c7 Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Thu, 28 Feb 2008 13:18:03 -0500 Subject: define _AI_ADDRCONFIG if not defined so that we can compile with an older glibc --- ChangeLog | 5 +++++ dbus/dbus-sysdeps-unix.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 901e0b0c..1fcc5957 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 7db70fee..d9a9030c 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 -- cgit