diff options
author | Colin Walters <walters@verbum.org> | 2004-10-29 19:17:57 +0000 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2004-10-29 19:17:57 +0000 |
commit | 38c20f84778394d4c42103ed68b643f9b76c96d8 (patch) | |
tree | 9d44fc9b32f48e1bc11c2155f815408947b377bf /configure.in | |
parent | 588da01c172d6c2008764a363a8cd64fe734e10e (diff) |
2004-10-29 Colin Walters <walters@redhat.com>
Patch from Kristof Vansant <de_lupus@pandora.be>
* configure.in: Detect Slackware.
* bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
* bus/rc.messagebus.in: New file.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e9c6c100..dcb8d450 100644 --- a/configure.in +++ b/configure.in @@ -998,18 +998,27 @@ if test -f /etc/redhat-release || test -f $EXPANDED_SYSCONFDIR/redhat-release ; operating_system=redhat fi +if test -f /etc/slackware-version || test -f $EXPANDED_SYSCONFDIR/slackware-version ; then + operating_system=slackware +fi + #### Sort out init scripts if test x$with_init_scripts = x; then if test xredhat = x$operating_system ; then with_init_scripts=redhat else - with_init_scripts=none + if test xslackware = x$operating_system ; then + with_init_scripts=slackware + else + with_init_scripts=none + fi fi fi AM_CONDITIONAL(DBUS_INIT_SCRIPTS_RED_HAT, test x$with_init_scripts = xredhat) +AM_CONDITIONAL(DBUS_INIT_SCRIPTS_SLACKWARE, test x$with_init_scripts = xslackware) ##### Set up location for system bus socket if ! test -z "$with_system_socket"; then @@ -1126,6 +1135,7 @@ dbus/dbus-arch-deps.h bus/system.conf bus/session.conf bus/messagebus +bus/rc.messagebus bus/dbus-daemon-1.1 Makefile dbus/Makefile |