diff options
author | Havoc Pennington <hp@redhat.com> | 2003-03-15 06:00:01 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-03-15 06:00:01 +0000 |
commit | f05f87a825ab8ed5273674a7f65521ffc526f0d2 (patch) | |
tree | a4645e057d269b6bc7d2d99e89ba7606625b3686 /configure.in | |
parent | 169238e99a4a163c89eb053250daeedf5f73e5cd (diff) |
2003-03-15 Havoc Pennington <hp@pobox.com>
* bus/dispatch.c (bus_dispatch_test): OK, now finally actually
write useful test code, after all that futzing around ;-)
Test does not yet pass because we can't handle OOM in
_dbus_transport_messages_pending (basically,
dbus_connection_preallocate_send() does not prealloc the write
watch). To fix this, I think we need to add new stuff to
set_watch_functions, namely a SetEnabled function so we can alloc
the watch earlier, then enable it later.
* dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
dbus-memory.c to the convenience lib
* bus/test.c: rename some static functions to keep them clearly
distinct from stuff in connection.c. Handle client disconnection.
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 2d442478..78db7baf 100644 --- a/configure.in +++ b/configure.in @@ -136,6 +136,8 @@ AC_CHECK_LIB(nsl,gethostbyname) AC_CHECK_FUNCS(vsnprintf vasprintf nanosleep usleep poll setenv socketpair) +AC_CHECK_HEADERS(execinfo.h, [AC_CHECK_FUNCS(backtrace)]) + AC_CACHE_CHECK([for posix getpwnam_r], ac_cv_func_posix_getpwnam_r, [AC_TRY_RUN([ |