diff options
author | Alexander Larsson <alexl@redhat.com> | 2003-02-26 15:52:25 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2003-02-26 15:52:25 +0000 |
commit | 89e6dfd29cfbdb92f15e8fb2bde76d94a4c5a7b3 (patch) | |
tree | 501540fab4797ab07a4f90e239ac6dabb5bec38d /configure.in | |
parent | 7265423411609c14ddb9e6643463b840afcaa09b (diff) |
2003-02-26 Alexander Larsson <alexl@redhat.com>
* configure.in:
Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
* dbus/dbus-connection.c:
* dbus/dbus-connection.h:
Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
Add dbus_connection_set_wakeup_main_function and use it when queueing
incoming and outgoing messages.
* dbus/dbus-dataslot.c:
Threadsafe usage of DBusDataSlotAllocator
* dbus/dbus-message.c: (dbus_message_get_args_iter):
dbus_new can fail.
* dbus/dbus-server-unix.c:
Add todo comment
* glib/dbus-gmain.c:
Implement the new wakeup functions for glib.
* glib/Makefile.am:
* glib/test-thread-client.c:
* glib/test-thread-server.c:
* glib/test-thread.h:
Initial cut at some thread test code. Not really done yet.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 4b613e06..281da370 100644 --- a/configure.in +++ b/configure.in @@ -218,6 +218,7 @@ AC_SUBST(DBUS_TEST_LIBS) # Glib detection PKG_CHECK_MODULES(DBUS_GLIB, glib-2.0, have_glib=yes, have_glib=no) +PKG_CHECK_MODULES(DBUS_GLIB_THREADS, glib-2.0 gthread-2.0) if test x$have_glib = xno ; then AC_MSG_WARN([GLib development libraries not found]) @@ -238,6 +239,7 @@ AM_CONDITIONAL(HAVE_GLIB, test x$have_glib = xyes) dnl GLib flags AC_SUBST(DBUS_GLIB_CFLAGS) AC_SUBST(DBUS_GLIB_LIBS) +AC_SUBST(DBUS_GLIB_THREADS_LIBS) # Qt detection have_qt=no |