From 9a04cd047e342dd2ca4d0f2a18bc3990b6e0797d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Jacke?= Date: Wed, 20 Feb 2013 19:57:24 +0100 Subject: [PATCH] build:autoconf: fix output of syslog-facility check thanks to Thomas Bork for reporting! Signed-off-by: Bjoern Jacke Fix bug #9983 - configure and syslog facility and disk-quotas support. (cherry picked from commit dbb52ee98b84659386d70f0e75b0fa93fada1a97) --- source3/configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index 5b14a24131f..42c23e37f70 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4876,12 +4876,15 @@ AC_ARG_WITH(syslog-facility, if test "$withval" = "no" ; then AC_MSG_ERROR([argument to --with-syslog-facility must be a string]) else + AC_MSG_RESULT([$withval]) if test "$withval" != "yes" ; then syslog_facility="$withval" AC_DEFINE_UNQUOTED(SYSLOG_FACILITY,$syslog_facility, [syslog facility to log to]) fi fi -]) +], +AC_MSG_RESULT(no) +) ################################################# # check for experimental disk-quotas support -- 2.11.4.GIT