From 4b773b4a5448ac9bea2cc57486571588fdc14480 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 11 Apr 2003 21:21:21 +0000 Subject: 2003-04-11 Havoc Pennington * configure.in: add another directory to look for qt in. --- ChangeLog | 4 ++++ configure.in | 2 +- doc/TODO | 5 +++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5b3b0de7..3132df68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2003-04-11 Havoc Pennington + + * configure.in: add another directory to look for qt in. + 2003-04-11 Havoc Pennington * AUTHORS: add Colin Walters diff --git a/configure.in b/configure.in index 512da4f0..ec5ea92e 100644 --- a/configure.in +++ b/configure.in @@ -355,7 +355,7 @@ if test -n "$QTDIR" -a -f "$QTDIR/include/qglobal.h"; then have_qt=yes DBUS_QT_CXXFLAGS="-I$QTDIR/include" else - for dir in "${prefix}/include/qt" "/usr/include/qt3" "/usr/include/qt" "/usr/lib/qt/include"; do + for dir in "${prefix}/include/qt" "/usr/include/qt-3.1" "/usr/include/qt3" "/usr/include/qt" "/usr/lib/qt/include"; do if test -f "$dir/qglobal.h"; then have_qt=yes DBUS_QT_CXXFLAGS="-I$dir" diff --git a/doc/TODO b/doc/TODO index 77afa3cc..e1d2152c 100644 --- a/doc/TODO +++ b/doc/TODO @@ -77,3 +77,8 @@ - dbus_error_has_name(), dbus_message_name_is() - add DBUS_TYPE_INT64 ? + + - if you send a message to a service then block for reply, and the service exits/crashes + after the message bus has processed your message but before the service has replied, + it would be nice if the message bus sent you an error reply. + -- cgit