svn commit: r285301 - stable/10/usr.sbin/sendmail

Gregory Neil Shapiro gshapiro at FreeBSD.org
Thu Jul 9 05:00:21 UTC 2015


Author: gshapiro
Date: Thu Jul  9 05:00:19 2015
New Revision: 285301
URL: https://svnweb.freebsd.org/changeset/base/285301

Log:
  By default, sendmail 8.15 uses uncompressed IPv6 addresses.  Keep
  current FreeBSD 10 and earlier behavior of using compressed IPv6
  addresses in configuration, maps, rulesets, etc.  (FreeBSD 11 and
  later will use the new default of uncompressed IPv6 addresses.)
  
  Approved by:	re (gjb)

Modified:
  stable/10/usr.sbin/sendmail/Makefile

Modified: stable/10/usr.sbin/sendmail/Makefile
==============================================================================
--- stable/10/usr.sbin/sendmail/Makefile	Thu Jul  9 04:58:56 2015	(r285300)
+++ stable/10/usr.sbin/sendmail/Makefile	Thu Jul  9 05:00:19 2015	(r285301)
@@ -40,7 +40,7 @@ CFLAGS+= -I${SMDIR} -I${SENDMAIL_DIR}/in
 CFLAGS+= ${DBMDEF} ${NIS} -DTCPWRAPPERS ${MAPS}
 
 .if ${MK_INET6_SUPPORT} != "no"
-CFLAGS+= -DNETINET6
+CFLAGS+= -DNETINET6 -DIPV6_FULL=0
 .endif
 
 WARNS?=	1


More information about the svn-src-stable mailing list