diff options
author | krion <krion@FreeBSD.org> | 2017-12-15 23:14:11 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2017-12-15 23:14:11 +0800 |
commit | c931f095d66c5d8e03986f0b098ef843fc3fdda8 (patch) | |
tree | 31697f5b24a4860e3c52a71682a71e4c1c6ac8a5 | |
parent | 03a6162ed2f74367c4860dd29257253dcdcbe2d2 (diff) | |
download | freebsd-ports-gnome-c931f095d66c5d8e03986f0b098ef843fc3fdda8.tar.gz freebsd-ports-gnome-c931f095d66c5d8e03986f0b098ef843fc3fdda8.tar.zst freebsd-ports-gnome-c931f095d66c5d8e03986f0b098ef843fc3fdda8.zip |
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
-rw-r--r-- | dns/powerdns-recursor/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dns/powerdns-recursor/Makefile b/dns/powerdns-recursor/Makefile index dfcde5d98e1e..22f49c00f599 100644 --- a/dns/powerdns-recursor/Makefile +++ b/dns/powerdns-recursor/Makefile @@ -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> |