The branch, master has been updated
       via  417f187645de49ab35d2918c3ca0185a452e32b1 (commit)
      from  2c458935933daf219be276b06c6eb1b5752f2638 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 417f187645de49ab35d2918c3ca0185a452e32b1
Author: Dan Sledz <[EMAIL PROTECTED]>
Date:   Sun Nov 16 17:40:03 2008 -0800

    Allow SYSLOG_FACILITY to be modified with a new configure option called 
--with-syslog-facility

-----------------------------------------------------------------------

Summary of changes:
 source3/configure.in |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/configure.in b/source3/configure.in
index 9214d03..90339d7 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -4369,6 +4369,22 @@ AC_ARG_WITH(syslog,
 )
 
 #################################################
+# check for custom syslog facility
+AC_MSG_CHECKING(whether to use a custom syslog facility)
+AC_ARG_WITH(syslog-facility,
+[AS_HELP_STRING([--with-syslog-facility], [Use a custom syslog facility 
(default=none)])],
+[
+  if test "$withval" = "no" ; then
+    AC_MSG_ERROR([argument to --with-syslog-facility must be a string])
+  else
+     if test "$withval" != "yes" ; then
+        syslog_facility="$withval"
+       AC_DEFINE_UNQUOTED(SYSLOG_FACILITY,$syslog_facility, [syslog facility 
to log to])
+     fi
+  fi
+])
+
+#################################################
 # check for experimental disk-quotas support
 
 samba_cv_WITH_QUOTAS=auto


-- 
Samba Shared Repository

Reply via email to