svn commit: r456399 - head/dns/powerdns-recursor

Kirill Ponomarev krion at FreeBSD.org
Fri Dec 15 15:14:12 UTC 2017


Author: krion
Date: Fri Dec 15 15:14:11 2017
New Revision: 456399
URL: https://svnweb.freebsd.org/changeset/ports/456399

Log:
  Mark IGNORE on FreeBSD < 10.4 due lack of __cxa_thread_atexit()
  implementation.
  
  PR:		224298
  Submitted by:	maintainer
  Approved by:	mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D13493

Modified:
  head/dns/powerdns-recursor/Makefile

Modified: head/dns/powerdns-recursor/Makefile
==============================================================================
--- head/dns/powerdns-recursor/Makefile	Fri Dec 15 15:09:24 2017	(r456398)
+++ head/dns/powerdns-recursor/Makefile	Fri Dec 15 15:14:11 2017	(r456399)
@@ -58,4 +58,10 @@ SETUID_EXTRA_PATCHES=	${PATCHDIR}/extrapatch-setuid
 
 SUB_FILES=	pkg-message
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 1003506
+IGNORE=		no _cxa_thread_atexit() support in FreeBSD libc < 10.4
+.endif
+
+.include <bsd.port.post.mk>


More information about the svn-ports-head mailing list