diff options
author | Stef Walter <stef@memberwebs.com> | 2008-06-10 00:10:04 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2008-06-10 00:10:04 +0000 |
commit | 33846e5122fbf8a964f278eb01ad821e643bb63c (patch) | |
tree | cfdb39d88ac62ffc9e5d5edb07fe9550d703a2cd /configure.in | |
parent | 102b6d7ff290a3df504915363bdf2268553e5f87 (diff) |
Add syslog logging
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.in b/configure.in index d17e554..f366211 100644 --- a/configure.in +++ b/configure.in @@ -87,6 +87,15 @@ if test "$enable_debug" = "yes"; then echo "enabling debug compile mode" fi +# Log to syslog +AC_ARG_WITH(syslog, + AC_HELP_STRING([--without-syslog], + [Don't log to syslog in addition to slapd logs])) + +if test "$with_syslog" != "no"; then + AC_DEFINE_UNQUOTED(WITH_SYSLOG, 1, [With syslog logging]) +fi + AC_CONFIG_FILES([ Makefile plugin/Makefile |