diff options
author | Rainer Gerhards <rgerhards@adiscon> | 2008-04-09 09:00:13 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon> | 2008-04-09 09:00:13 +0200 |
commit | b0a4df43e4434a1eeb3f23c2c5a4b0cdd2fbddda (patch) | |
tree | 193d7759a8abb28b648845a63d98d9753b2765f7 /configure.ac | |
parent | c565a7e847aeb58ddcd1bdbd006597953a4dea31 (diff) | |
download | rsyslog-b0a4df43e4434a1eeb3f23c2c5a4b0cdd2fbddda.tar.gz rsyslog-b0a4df43e4434a1eeb3f23c2c5a4b0cdd2fbddda.tar.xz rsyslog-b0a4df43e4434a1eeb3f23c2c5a4b0cdd2fbddda.zip |
fixed build system for BSD
It's a hack, but at least it works now - on BSD. Will check later
if it is fine on Linux, too. Any better method of doing things is
happily accepted ;)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index d330ea82..68158c46 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ case "${host}" in ;; *-*-*darwin*|*-*-freebsd*|*-*-netbsd*|*-*-openbsd*) AC_DEFINE([OS_BSD], [1], [Indicator for a BSD OS]) - os_bsd = "yes" + AM_CONDITIONAL(ENABLE_IMKLOG_BSD, test x = x) ;; esac @@ -204,8 +204,6 @@ AC_ARG_ENABLE(klog, [enable_klog="yes"] ) AM_CONDITIONAL(ENABLE_IMKLOGD, test x$enable_klog = xyes) -AM_CONDITIONAL(ENABLE_IMKLOG_BSD, test x$os_bsd = xyes) -AM_CONDITIONAL(ENABLE_IMKLOG_LINUX, test x$os_bsd = x) # # SYSLOG_UNIXAF |