File: sendmail.m4

package info (click to toggle)
inn2 2.5.4-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,720 kB
  • ctags: 8,983
  • sloc: ansic: 92,499; sh: 13,509; perl: 12,921; makefile: 2,985; yacc: 842; python: 342; lex: 255
file content (26 lines) | stat: -rw-r--r-- 1,044 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
dnl sendmail.m4 -- Checks for the path to sendmail.
dnl $Id: sendmail.m4 8499 2009-06-06 19:39:47Z iulius $
dnl
dnl We have a custom probe for sendmail since we want to look in non-standard
dnl locations for it, and another custom macro to allow users to override the
dnl path to sendmail picked up by the script.

dnl Allow the user to specify the path to sendmail.
AC_DEFUN([INN_ARG_SENDMAIL],
[AC_ARG_VAR([SENDMAIL], [Location of sendmail binary to use])
AC_ARG_WITH([sendmail],
    [AS_HELP_STRING([--with-sendmail=PATH], [Path to sendmail])],
    SENDMAIL=$with_sendmail)])

dnl Search for sendmail, honoring the path set by the user if they've done so
dnl and otherwise looking only in /usr/sbin and /usr/lib.
AC_DEFUN([INN_PATH_SENDMAIL],
[if test "${with_sendmail+set}" = set ; then
    AC_MSG_CHECKING([for sendmail])
    AC_MSG_RESULT([$SENDMAIL])
else
    AC_PATH_PROG([SENDMAIL], [sendmail], , [/usr/sbin:/usr/lib])
    if test -z "$SENDMAIL" ; then
        AC_MSG_ERROR(sendmail not found, re-run with --with-sendmail)
    fi
fi])