fix build against the latest gcc/glibc
authorJohn (J5) Palmieri <johnp@redhat.com>
Thu, 21 Feb 2008 18:42:06 +0000 (13:42 -0500)
committerJohn (J5) Palmieri <johnp@redhat.com>
Thu, 21 Feb 2008 18:42:06 +0000 (13:42 -0500)
* dbus/dbus-sysdeps-unix.c: define _GNU_SOURCE
* bus/selinux.c: include limits.h
* Patch by Matthias Clasen <mclasen at redhat.com>

ChangeLog
bus/selinux.c
dbus/dbus-sysdeps-unix.c

index ad81838..d60b27d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,11 @@
 2008-02-21  John (J5) Palmieri  <johnp@redhat.com>
+       
+       * fix build against the latest gcc/glibc
+       * dbus/dbus-sysdeps-unix.c: define _GNU_SOURCE
+       * bus/selinux.c: include limits.h
+       * Patch by Matthias Clasen <mclasen at redhat.com>
+
+2008-02-21  John (J5) Palmieri  <johnp@redhat.com>
 
        * fixes dbus-launch so the bus goes away when X does
          (Red Hat Bug #430412)
index d31f938..c0f6f4d 100644 (file)
@@ -34,6 +34,7 @@
 #ifdef HAVE_ERRNO_H
 #include <errno.h>
 #endif
+#include <limits.h>
 #include <pthread.h>
 #include <syslog.h>
 #include <selinux/selinux.h>
index dfa71e7..7db70fe 100644 (file)
@@ -22,6 +22,8 @@
  *
  */
 
+#define _GNU_SOURCE 
+
 #include "dbus-internals.h"
 #include "dbus-sysdeps.h"
 #include "dbus-sysdeps-unix.h"