[SCM] Samba Shared Repository - branch v3-3-test updated - release-3-2-0pre2-4518-g9e74113

Tim Prouty tprouty at samba.org
Tue Nov 25 01:36:46 GMT 2008


The branch, v3-3-test has been updated
       via  9e74113ecdad2df46b3a77d195e37a38c7e77d3d (commit)
      from  fa7a8f051debefa4e061b167a6906785d90deada (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-3-test


- Log -----------------------------------------------------------------
commit 9e74113ecdad2df46b3a77d195e37a38c7e77d3d
Author: Dan Sledz <dsledz at isilon.com>
Date:   Sun Nov 16 17:40:03 2008 -0800

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

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

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


Changeset truncated at 500 lines:

diff --git a/source/configure.in b/source/configure.in
index dbfd4d5..49732b6 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -4382,6 +4382,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


More information about the samba-cvs mailing list