diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2004-06-01 01:29:42 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2004-06-01 01:29:42 +0000 |
commit | 76a17fc31644dd8ea6914a3b0c7daba6b85fe159 (patch) | |
tree | c05169b8bdcf1b9d61cd5583f11216147af44885 /usr.sbin | |
parent | d503c79cad595bd26f835062ce4bb6ef858857eb (diff) | |
download | FreeBSD-src-76a17fc31644dd8ea6914a3b0c7daba6b85fe159.zip FreeBSD-src-76a17fc31644dd8ea6914a3b0c7daba6b85fe159.tar.gz |
Honor NOINET6 and disable IPv6 support in libmilter and sendmail if it
is set.
MFC after: 4 days
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sendmail/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/sendmail/Makefile b/usr.sbin/sendmail/Makefile index 26b2082..c1c8381 100644 --- a/usr.sbin/sendmail/Makefile +++ b/usr.sbin/sendmail/Makefile @@ -32,7 +32,11 @@ MAPS= -DMAP_REGEX -DDNSMAP CSTD?= c89 CFLAGS+= -I${SMDIR} -I${SENDMAIL_DIR}/include -I. -CFLAGS+= ${DBMDEF} ${NIS} -DMILTER -DNETINET6 -DTCPWRAPPERS ${MAPS} +CFLAGS+= ${DBMDEF} ${NIS} -DMILTER -DTCPWRAPPERS ${MAPS} + +.if !defined(NOINET6) +CFLAGS+= -DNETINET6 +.endif DPADD= ${LIBUTIL} ${LIBWRAP} LDADD= -lutil -lwrap |