Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Apr 2018 01:03:13 +0000 (UTC)
From:      "Carlos J. Puga Medina" <cpm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r466389 - branches/2018Q2/dns/dnsdist
Message-ID:  <201804040103.w3413DL7048682@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



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