svn commit: r465828 - head/sysutils/burp

Mark Linimon linimon at FreeBSD.org
Wed Mar 28 17:16:49 UTC 2018


Author: linimon
Date: Wed Mar 28 17:16:48 2018
New Revision: 465828
URL: https://svnweb.freebsd.org/changeset/ports/465828

Log:
  Fix build on 11 due to clang4 regression.
  
  PR:		216638
  Submitted by:	jbeich

Modified:
  head/sysutils/burp/Makefile
  head/sysutils/burp/pkg-plist

Modified: head/sysutils/burp/Makefile
==============================================================================
--- head/sysutils/burp/Makefile	Wed Mar 28 17:15:22 2018	(r465827)
+++ head/sysutils/burp/Makefile	Wed Mar 28 17:16:48 2018	(r465828)
@@ -22,7 +22,7 @@ GH_ACCOUNT=	grke
 
 USE_RC_SUBR=	burp
 GNU_CONFIGURE=	yes
-USES=		gmake localbase ncurses ssl
+USES=		compiler:c++11-lib gmake localbase ncurses ssl
 
 PORTSCOUT=	limit:^1\.4\.
 
@@ -46,4 +46,10 @@ post-install:
 	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/vss_strip
 	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/burp
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 1200039 && ${CC:T} == "clang"
+BROKEN=		fails to compile due to clang 4.0 regression: util/bdthreads.cc:132:10: ordered comparison between pointer and zero
+.endif
+
+.include <bsd.port.post.mk>

Modified: head/sysutils/burp/pkg-plist
==============================================================================
--- head/sysutils/burp/pkg-plist	Wed Mar 28 17:15:22 2018	(r465827)
+++ head/sysutils/burp/pkg-plist	Wed Mar 28 17:16:48 2018	(r465828)
@@ -1,3 +1,4 @@
+%%ETCDIR%%/CA.cnf
 %%ETCDIR%%/autoupgrade/server/win32/script
 %%ETCDIR%%/autoupgrade/server/win64/script
 %%ETCDIR%%/burp-server.conf
@@ -8,7 +9,7 @@
 %%ETCDIR%%/ssl_extra_checks_script
 %%ETCDIR%%/summary_script
 %%ETCDIR%%/timer_script
-%%ETCDIR%%/CA.cnf
+etc/rc.d/burp
 man/man8/bedup.8.gz
 man/man8/burp.8.gz
 man/man8/burp_ca.8.gz


More information about the svn-ports-all mailing list