svn commit: r466388 - head/dns/dnsdist

Carlos J. Puga Medina cpm at FreeBSD.org
Wed Apr 4 00:56:39 UTC 2018


Author: cpm
Date: Wed Apr  4 00:56:39 2018
New Revision: 466388
URL: https://svnweb.freebsd.org/changeset/ports/466388

Log:
  - Fix and update the comment when building dnsdist on 10.x
  - Mark BROKEN on FreeBSD 10.3, fails to link due to lack of thread_local
  
  MFH:		2018Q2 (blanket)

Modified:
  head/dns/dnsdist/Makefile

Modified: head/dns/dnsdist/Makefile
==============================================================================
--- head/dns/dnsdist/Makefile	Tue Apr  3 23:48:09 2018	(r466387)
+++ head/dns/dnsdist/Makefile	Wed Apr  4 00:56:39 2018	(r466388)
@@ -64,11 +64,15 @@ SNMP_CONFIGURE_WITH=	net-snmp
 
 .include <bsd.port.pre.mk>
 
-# Fix dnsdist binaries when building on FreeBSD 10.3
+# Fix dnsdist binary when building on FreeBSD 10.x
 .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000
 BUILD_DEPENDS+=	clang50:devel/llvm50
 CC=		clang50
 CXX=		clang++50
+.endif
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1004000
+BROKEN=		fails to link due to lack of thread_local
 .endif
 
 post-install:


More information about the svn-ports-head mailing list