File: BB_ENABLE_SMTP.m4

package info (click to toggle)
log4cpp 1.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,444 kB
  • sloc: cpp: 6,715; sh: 3,670; ansic: 1,049; makefile: 295
file content (11 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
AC_DEFUN([BB_ENABLE_SMTP],
[
AC_ARG_ENABLE(smtp, [  --disable-smtp          disables SMTP appender], [], [ enable_smtp=yes])

# for SmtpAppender
if test "x$enable_smtp" != xyes; then
    AC_DEFINE(DISABLE_SMTP,1,[define if SmtpAppender is disabled])
fi

AM_CONDITIONAL([DISABLE_SMTP], [test "x$enable_smtp" != xyes])
])