svn commit: r466389 - branches/2018Q2/dns/dnsdist
Carlos J. Puga Medina
cpm at FreeBSD.org
Wed Apr 4 01:03:14 UTC 2018
Author: cpm
Date: Wed Apr 4 01:03:12 2018
New Revision: 466389
URL: https://svnweb.freebsd.org/changeset/ports/466389
Log:
MFH: r466388
- 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
Approved by: ports-secteam blanket
Modified:
branches/2018Q2/dns/dnsdist/Makefile
Directory Properties:
branches/2018Q2/ (props changed)
Modified: branches/2018Q2/dns/dnsdist/Makefile
==============================================================================
--- branches/2018Q2/dns/dnsdist/Makefile Wed Apr 4 00:56:39 2018 (r466388)
+++ branches/2018Q2/dns/dnsdist/Makefile Wed Apr 4 01:03:12 2018 (r466389)
@@ -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-branches
mailing list