8fe1b8c03e
- K&R -> ANSI prototype [O] - Do not bother to do free right before exit() or execve() [O] - Remove some dead code in addarg() - Make additional parameters specified in mailer.conf(5) actually work and document the fact. [N] - Avoid using __progname but instead use getprogname() and setprogname() to provide more sensible messages. [O, N] - Update $OpenBSD$ and $NetBSD$ to reflect the fact that we have sync'ed with their code. - WARNS=6 Obtained from/Inspired by: OpenBSD [O], NetBSD [N] (partially)
35 lines
772 B
Makefile
35 lines
772 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if ${MK_MAILWRAPPER} != "no"
|
|
PROG= mailwrapper
|
|
MAN= mailwrapper.8
|
|
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
WARNS?= 6
|
|
.endif
|
|
|
|
.if ${MK_MAILWRAPPER} != "no" || ${MK_SENDMAIL} != "no"
|
|
SYMLINKS= ${BINDIR}/mailwrapper /usr/sbin/sendmail \
|
|
${BINDIR}/mailwrapper /usr/sbin/hoststat \
|
|
${BINDIR}/mailwrapper /usr/sbin/purgestat \
|
|
${BINDIR}/mailwrapper /usr/bin/newaliases \
|
|
${BINDIR}/mailwrapper /usr/bin/mailq
|
|
|
|
.if ${MK_MAILWRAPPER} == "no" && ${MK_SENDMAIL} != "no"
|
|
SYMLINKS+= /usr/libexec/sendmail/sendmail ${BINDIR}/mailwrapper
|
|
.endif
|
|
.endif
|
|
|
|
.if ${MK_MAILWRAPPER} != "no"
|
|
.if !exists(${DESTDIR}/etc/mail/mailer.conf)
|
|
FILES= ${.CURDIR}/../../etc/mail/mailer.conf
|
|
FILESDIR= /etc/mail
|
|
FILESMODE= 644
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|