Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Feb 2017 20:16:19 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r433910 - head/net/nepenthes
Message-ID:  <201702112016.v1BKGJh6050268@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sat Feb 11 20:16:18 2017
New Revision: 433910
URL: https://svnweb.freebsd.org/changeset/ports/433910

Log:
  net/nepenthes: unbreak with gcc6 or later
  
  In file included from SMBDialogue.cpp:34:0:
  asn1-shellcodes.h:25:1: error: narrowing conversion of '133' from 'int' to 'char' inside { } [-Wnarrowing]
   };
   ^
  asn1-shellcodes.h:25:1: error: narrowing conversion of '255' from 'int' to 'char' inside { } [-Wnarrowing]
  asn1-shellcodes.h:25:1: error: narrowing conversion of '200' from 'int' to 'char' inside { } [-Wnarrowing]
  asn1-shellcodes.h:300:1: error: narrowing conversion of '191' from 'int' to 'char' inside { } [-Wnarrowing]
   };
   ^
  [...]

Modified:
  head/net/nepenthes/Makefile   (contents, props changed)

Modified: head/net/nepenthes/Makefile
==============================================================================
--- head/net/nepenthes/Makefile	Sat Feb 11 20:05:15 2017	(r433909)
+++ head/net/nepenthes/Makefile	Sat Feb 11 20:16:18 2017	(r433910)
@@ -17,6 +17,7 @@ LIB_DEPENDS=	libpcre.so:devel/pcre \
 
 USES=		dos2unix libtool perl5
 DOS2UNIX_FILE=	modules/shellcode-generic/sch_generic_connect_trans.cpp
+USE_CXXSTD=	gnu++98
 USE_GCC=	any
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--localstatedir=/var



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702112016.v1BKGJh6050268>