Date: Fri, 15 Dec 2017 15:14:11 +0000 (UTC) From: Kirill Ponomarev <krion@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456399 - head/dns/powerdns-recursor Message-ID: <201712151514.vBFFEBcP039387@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712151514.vBFFEBcP039387>