summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2005-07-12 21:09:54 +0000
committerColin Walters <walters@verbum.org>2005-07-12 21:09:54 +0000
commit9f92ac0ef5ae8ab5a325b15d0b3109143fe51f8c (patch)
tree49fe8fc588f18f797b1216b9b0612df16c2ffd86
parentd06bfe528bb8d5e2ad2b4844c36fe43155739b3d (diff)
2005-07-12 Colin Walters <walters@verbum.org>
Patch from Jim Gettys <Jim.Gettys@hp.com>. * tools/dbus-launch.c: Include sys/select.h.
-rw-r--r--ChangeLog6
-rw-r--r--tools/dbus-launch.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 01fbb957..6c397247 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-07-12 Colin Walters <walters@verbum.org>
+
+ Patch from Jim Gettys <Jim.Gettys@hp.com>.
+
+ * tools/dbus-launch.c: Include sys/select.h.
+
2005-07-12 John (J5) Palmieri <johnp@redhat.com>
* python/dbus_bindings.pyx.in: removed
diff --git a/tools/dbus-launch.c b/tools/dbus-launch.c
index e24651a5..ad4fd5a4 100644
--- a/tools/dbus-launch.c
+++ b/tools/dbus-launch.c
@@ -31,6 +31,7 @@
#include <string.h>
#include <signal.h>
#include <stdarg.h>
+#include <sys/select.h>
#ifdef DBUS_BUILD_X11
#include <X11/Xlib.h>
#endif