svn commit: r484453 - head/mail/nullmailer

Tobias Kortkamp tobik at FreeBSD.org
Thu Nov 8 13:45:53 UTC 2018


Author: tobik
Date: Thu Nov  8 13:45:52 2018
New Revision: 484453
URL: https://svnweb.freebsd.org/changeset/ports/484453

Log:
  mail/nullmailer: Unbreak build with Clang 6 (C++14 by default)
  
  inject.cc:221:3: error: non-constant-expression cannot be narrowed from type 'size_t' (aka 'unsigned long') to 'unsigned int' in initializer list [-Wc++11-narrowing]
    X(Errors-To,         T,F,F,F,F), // 5
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
  http://beefy12.nyi.freebsd.org/data/head-amd64-default/p483866_s340093/logs/nullmailer-1.13_3,1.log
  
  PR:		230496
  Submitted by:	Tod McQuillin <devin at spamcop.net>

Modified:
  head/mail/nullmailer/Makefile

Modified: head/mail/nullmailer/Makefile
==============================================================================
--- head/mail/nullmailer/Makefile	Thu Nov  8 13:32:09 2018	(r484452)
+++ head/mail/nullmailer/Makefile	Thu Nov  8 13:45:52 2018	(r484453)
@@ -28,6 +28,7 @@ NULLMAIL_GID=	522
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS+=--localstatedir=${LOCALSTATEDIR}
 
+USE_CXXSTD=	gnu++98
 USE_SUBMAKE=	yes
 
 USE_RC_SUBR=	${PORTNAME}


More information about the svn-ports-all mailing list