summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMalcolm Studd <mestudd@gmail.com>2010-05-14 20:52:59 -0400
committerLennart Poettering <lennart@poettering.net>2010-05-15 23:43:33 +0200
commit65c8976ab12f13fc339a16d108e620bf2fd703f4 (patch)
treeffff19458dfa4259fec59d865be15f73092b468d /configure.ac
parente12891f70c264683f4f2b99dd6c535c73f1d26a5 (diff)
build-sys: slackware support
Attached is a patch for slackware support. If you want it some other way, let me know; I haven't used git before. Slackware doesn't have gnome or vala, and I'm having some issues with the vala programs in systemd. I installed the vala compiler, and the configure script says I have everything required, but compilation fails (log attached). Is there something I'm missing? I installed systemd by commenting out the vala programs in Makefile.am. Malcolm
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cd7aaff0c0..a5e3613b92 100644
--- a/configure.ac
+++ b/configure.ac
@@ -148,6 +148,7 @@ if test "z$with_distro" = "z"; then
AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
AC_CHECK_FILE(/etc/arch-release,with_distro="arch")
AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
+ AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
fi
if test "z$with_distro" = "z"; then
with_distro=`uname -s`
@@ -191,6 +192,13 @@ case $with_distro in
special_syslog_service=syslog-ng.service
AC_DEFINE(TARGET_GENTOO, [], [Target is Gentoo])
;;
+ slackware)
+ SYSTEM_SYSVINIT_PATH=/etc/rc.d/init.d
+ SYSTEM_SYSVRCND_PATH=/etc/rc.d
+ special_dbus_service=messagebus.service
+ special_syslog_service=syslog.service
+ AC_DEFINE(TARGET_SLACKWARE, [], [Target is Slackware])
+ ;;
none)
SYSTEM_SYSVINIT_PATH=/fix/the/configure/script
SYSTEM_SYSVRCND_PATH=/fix/the/configure/script
@@ -210,6 +218,7 @@ AM_CONDITIONAL(TARGET_SUSE, test x"$with_distro" = xsuse)
AM_CONDITIONAL(TARGET_DEBIAN, test x"$with_distro" = xdebian)
AM_CONDITIONAL(TARGET_ARCH, test x"$with_distro" = xarch)
AM_CONDITIONAL(TARGET_GENTOO, test x"$with_distro" = xgentoo)
+AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
AC_DEFINE_UNQUOTED(SPECIAL_DBUS_SERVICE, ["$special_dbus_service"], [D-Bus service name])
AC_DEFINE_UNQUOTED(SPECIAL_SYSLOG_SERVICE, ["$special_syslog_service"], [syslog service name])