From d64ef518a0e0dc482b5ee8eb51aa7bf12d19b929 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Apr 12 2010 15:37:49 +0000 Subject: - make the default syslog destination in the certmonger.conf(5) man page actually preprocess correctly --- diff --git a/configure.ac b/configure.ac index 1858468..004d3e0 100644 --- a/configure.ac +++ b/configure.ac @@ -173,7 +173,9 @@ AC_DEFINE_UNQUOTED(CM_DEFAULT_CERT_LIFETIME,"1y",[Define to the default certific AC_DEFINE_UNQUOTED(CM_DEFAULT_CERT_SERIAL,"01",[Define to the default starting serial number for self-signed certificates.]) AC_DEFINE_UNQUOTED(CM_DEFAULT_NOTIFICATION_METHOD,cm_notification_syslog,[Define to the default method of notification.]) AC_DEFINE_UNQUOTED(CM_DEFAULT_NOTIFICATION_MAIL,"root",[Define to the address where notification mail should be sent by default.]) -AC_DEFINE_UNQUOTED(CM_DEFAULT_NOTIFICATION_SYSLOG_PRIORITY,"daemon.notice",[Define to the syslog facility from which notification messages should be sent by default.]) +CM_DEFAULT_NOTIFICATION_SYSLOG_PRIORITY=daemon.notice +AC_SUBST(CM_DEFAULT_NOTIFICATION_SYSLOG_PRIORITY) +AC_DEFINE_UNQUOTED(CM_DEFAULT_NOTIFICATION_SYSLOG_PRIORITY,"$CM_DEFAULT_NOTIFICATION_SYSLOG_PRIORITY",[Define to the syslog facility from which notification messages should be sent by default.]) AC_DEFINE(CM_DELAY_SOON,5,[Define to the time to wait for something that will happen soon.]) AC_DEFINE(CM_DELAY_SOONISH,30,[Define to the time to wait for something that will happen soon, but not that soon.]) AC_DEFINE(CM_DELAY_CA_POLL,(7 * 24 * 60 * 60),[Define to the time to wait between attempts to see if the CA issued a certificate.])