summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-04-11 21:21:21 +0000
committerHavoc Pennington <hp@redhat.com>2003-04-11 21:21:21 +0000
commit4b773b4a5448ac9bea2cc57486571588fdc14480 (patch)
tree90be318cb0f75a65e41e9bb1d3ff1666a5e956fa
parentf4692372ecbe7e7573ffb7c2e3697130fdcf65fc (diff)
2003-04-11 Havoc Pennington <hp@redhat.com>
* configure.in: add another directory to look for qt in.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
-rw-r--r--doc/TODO5
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5b3b0de7..3132df68 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2003-04-11 Havoc Pennington <hp@redhat.com>
+ * configure.in: add another directory to look for qt in.
+
+2003-04-11 Havoc Pennington <hp@redhat.com>
+
* AUTHORS: add Colin Walters
2003-04-11 Havoc Pennington <hp@redhat.com>
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.
+