mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-09 06:08:01 +02:00
2003-05-15 Havoc Pennington <hp@redhat.com>
* configure.in: 0.11 * NEWS: update * bus/Makefile.am (initddir): apparently we are supposed to put init scripts in /etc/rc.d/init.d not /etc/init.d * bus/Makefile.am: remove the "you must --enable-tests to make check" as it broke distcheck * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
This commit is contained in:
parent
e9cb382daf
commit
f0f4335bd9
7 changed files with 41 additions and 28 deletions
14
ChangeLog
14
ChangeLog
|
|
@ -1,3 +1,17 @@
|
||||||
|
2003-05-15 Havoc Pennington <hp@redhat.com>
|
||||||
|
|
||||||
|
* configure.in: 0.11
|
||||||
|
|
||||||
|
* NEWS: update
|
||||||
|
|
||||||
|
* bus/Makefile.am (initddir): apparently we are supposed to put
|
||||||
|
init scripts in /etc/rc.d/init.d not /etc/init.d
|
||||||
|
|
||||||
|
* bus/Makefile.am: remove the "you must --enable-tests to make
|
||||||
|
check" as it broke distcheck
|
||||||
|
|
||||||
|
* bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
|
||||||
|
|
||||||
2003-05-13 James Willcox <jwillcox@gnome.org>
|
2003-05-13 James Willcox <jwillcox@gnome.org>
|
||||||
|
|
||||||
* configure.in:
|
* configure.in:
|
||||||
|
|
|
||||||
|
|
@ -24,14 +24,6 @@ EXTRA_DIST = \
|
||||||
|
|
||||||
all-local: Doxyfile
|
all-local: Doxyfile
|
||||||
|
|
||||||
if DBUS_BUILD_TESTS
|
|
||||||
### nothing
|
|
||||||
else
|
|
||||||
check-local:
|
|
||||||
echo "You have to configure with --enable-tests to make check" ; \
|
|
||||||
exit 1
|
|
||||||
endif
|
|
||||||
|
|
||||||
if DBUS_GCOV_ENABLED
|
if DBUS_GCOV_ENABLED
|
||||||
clean-gcov:
|
clean-gcov:
|
||||||
find -name "*.da" -o -name "*.gcov" | xargs rm || true
|
find -name "*.da" -o -name "*.gcov" | xargs rm || true
|
||||||
|
|
|
||||||
22
NEWS
22
NEWS
|
|
@ -1,3 +1,25 @@
|
||||||
|
D-BUS 0.11
|
||||||
|
===
|
||||||
|
|
||||||
|
- add --enable-docs to turn off/on the docbook stuff
|
||||||
|
(doesn't cover doxygen stuff yet)
|
||||||
|
- make people define DBUS_API_SUBJECT_TO_CHANGE
|
||||||
|
and read warning in README so they don't
|
||||||
|
expect the API to be frozen already
|
||||||
|
- rename .pc files to "dbus-1.pc" instead of
|
||||||
|
"dbus-1.0.pc" etc. - this will require changing
|
||||||
|
pkg-config invocations
|
||||||
|
- some docs cleanups
|
||||||
|
- add man pages for all executables
|
||||||
|
- allow send to/from bus driver in the default system.conf
|
||||||
|
- fix user lookup bug
|
||||||
|
- implement dbus-launch to launch the session message bus
|
||||||
|
- fix some thread deadlocks
|
||||||
|
- some performance profiling/optimization
|
||||||
|
- add dbus_bus_activate_service() function
|
||||||
|
- fix some minor bugs here and there
|
||||||
|
- install Red Hat initscript in the right place
|
||||||
|
|
||||||
D-BUS 0.10
|
D-BUS 0.10
|
||||||
===
|
===
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,8 +21,8 @@ DIE=0
|
||||||
DIE=1
|
DIE=1
|
||||||
}
|
}
|
||||||
|
|
||||||
AUTOMAKE=automake-1.6
|
AUTOMAKE=automake-1.7
|
||||||
ACLOCAL=aclocal-1.6
|
ACLOCAL=aclocal-1.7
|
||||||
|
|
||||||
($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
|
($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
|
||||||
AUTOMAKE=automake
|
AUTOMAKE=automake
|
||||||
|
|
|
||||||
|
|
@ -85,6 +85,7 @@ clean-local:
|
||||||
|
|
||||||
install-data-hook:
|
install-data-hook:
|
||||||
$(mkinstalldirs) $(DESTDIR)/$(localstatedir)/run/dbus
|
$(mkinstalldirs) $(DESTDIR)/$(localstatedir)/run/dbus
|
||||||
|
$(mkinstalldirs) $(DESTDIR)/$(configdir)/system.d
|
||||||
|
|
||||||
#### Init scripts fun
|
#### Init scripts fun
|
||||||
SCRIPT_IN_FILES=messagebus.in
|
SCRIPT_IN_FILES=messagebus.in
|
||||||
|
|
@ -92,7 +93,7 @@ SCRIPT_IN_FILES=messagebus.in
|
||||||
## Red Hat start
|
## Red Hat start
|
||||||
if DBUS_INIT_SCRIPTS_RED_HAT
|
if DBUS_INIT_SCRIPTS_RED_HAT
|
||||||
|
|
||||||
initddir=$(sysconfdir)/init.d
|
initddir=$(sysconfdir)/rc.d/init.d
|
||||||
|
|
||||||
initd_SCRIPTS= \
|
initd_SCRIPTS= \
|
||||||
messagebus
|
messagebus
|
||||||
|
|
@ -106,11 +107,3 @@ man_MANS = dbus-daemon-1.1
|
||||||
#### Extra dist
|
#### Extra dist
|
||||||
|
|
||||||
EXTRA_DIST=$(CONFIG_IN_FILES) $(SCRIPT_IN_FILES) $(man_MANS) $(MAN_IN_FILES)
|
EXTRA_DIST=$(CONFIG_IN_FILES) $(SCRIPT_IN_FILES) $(man_MANS) $(MAN_IN_FILES)
|
||||||
|
|
||||||
if DBUS_BUILD_TESTS
|
|
||||||
### nothing
|
|
||||||
else
|
|
||||||
check-local:
|
|
||||||
echo "You have to configure with --enable-tests to make check" ; \
|
|
||||||
exit 1
|
|
||||||
endif
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ AC_PREREQ(2.52)
|
||||||
|
|
||||||
AC_INIT(dbus/dbus.h)
|
AC_INIT(dbus/dbus.h)
|
||||||
|
|
||||||
AM_INIT_AUTOMAKE(dbus, 0.10)
|
AM_INIT_AUTOMAKE(dbus, 0.11)
|
||||||
|
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -150,11 +150,3 @@ dbus_test_LDADD= $(DBUS_CLIENT_LIBS) libdbus-1.la
|
||||||
## mop up the gcov files
|
## mop up the gcov files
|
||||||
clean-local:
|
clean-local:
|
||||||
/bin/rm *.bb *.bbg *.da *.gcov || true
|
/bin/rm *.bb *.bbg *.da *.gcov || true
|
||||||
|
|
||||||
if DBUS_BUILD_TESTS
|
|
||||||
### nothing
|
|
||||||
else
|
|
||||||
check-local:
|
|
||||||
echo "You have to configure with --enable-tests to make check" ; \
|
|
||||||
exit 1
|
|
||||||
endif
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue