Date: Wed, 4 Apr 2018 00:56:39 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466388 - head/dns/dnsdist Message-ID: <201804040056.w340ud4Z038146@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804040056.w340ud4Z038146>