summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2003-04-05 20:03:58 +0000
committerHavoc Pennington <hp@redhat.com>2003-04-05 20:03:58 +0000
commit6164a2e5f4ce528d902c8b55d4779204e91269ab (patch)
treeb27c37302129d2739aeecaaf346b669ef6be1ece
parent35ab7c6fab22dca58fc4b5c22b9e8587a6fd1492 (diff)
2003-04-05 Havoc Pennington <hp@pobox.com>dbus-0.7
* test/Makefile.am (dist-hook): also dist *.in files * NEWS: update * configure.in: 0.7
-rw-r--r--ChangeLog8
-rw-r--r--NEWS12
-rw-r--r--configure.in2
-rw-r--r--test/Makefile.am2
4 files changed, 22 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a4bcafa6..4ac2af96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2003-04-05 Havoc Pennington <hp@pobox.com>
+ * test/Makefile.am (dist-hook): also dist *.in files
+
+ * NEWS: update
+
+ * configure.in: 0.7
+
+2003-04-05 Havoc Pennington <hp@pobox.com>
+
* dbus/dbus-string.c: docs warning
* dbus/dbus-spawn.c: missing docs
diff --git a/NEWS b/NEWS
index 36e5d6f6..d5cd46fa 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+D-BUS 0.7
+===
+
+- implement configuration file used to control bus characteristics
+- implement daemon mode, changing user ID, and other system
+ bus features
+- add init scripts for systemwide bus
+- add "make check-coverage" target to check test coverage
+- more test suite additions
+- many, many bugfixes
+- many API changes/fixes
+
D-BUS 0.6
===
- Vastly improved bus daemon test suite
diff --git a/configure.in b/configure.in
index 3bc177b3..04c47316 100644
--- a/configure.in
+++ b/configure.in
@@ -3,7 +3,7 @@ AC_PREREQ(2.52)
AC_INIT(dbus/dbus.h)
-AM_INIT_AUTOMAKE(dbus, 0.6)
+AM_INIT_AUTOMAKE(dbus, 0.7)
AM_CONFIG_HEADER(config.h)
diff --git a/test/Makefile.am b/test/Makefile.am
index ddbe69c4..95d87308 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -89,7 +89,7 @@ dist-hook:
for D in $(TESTDIRS); do \
test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ; \
done ; \
- FILES=`$(FIND_TESTS)` ; \
+ FILES=`$(FIND_TESTS) -o -name "*.in"` ; \
for F in $$FILES; do \
echo '-- Disting file '$$F ; \
cp $$F $(distdir)/$$F || exit 1 ; \