diff options
author | Kevin Bowling <kbowling@FreeBSD.org> | 2021-07-19 18:36:49 +0000 |
---|---|---|
committer | Kevin Bowling <kbowling@FreeBSD.org> | 2021-07-19 18:36:49 +0000 |
commit | da1ef8ebb97508f10c4f713bc969556f11df88a3 (patch) | |
tree | f61d59811e7c48f8a7e2e9103059d4dbb7eb02ed | |
parent | 7c9b2f40c5f2557d87cc1d2ce7d968377b13d6b3 (diff) |
dns/powerdns: Set NOT_FOR_ARCHS = i386
archs with 32-bits time_t are no longer supported by upstream
PR: 257257
Reported by: Ralf van der Enden <tremere@cainites.net> (maintainer)
-rw-r--r-- | dns/powerdns/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dns/powerdns/Makefile b/dns/powerdns/Makefile index 90714afa7b37..e3da9a172289 100644 --- a/dns/powerdns/Makefile +++ b/dns/powerdns/Makefile @@ -10,6 +10,8 @@ COMMENT= Advanced DNS server with multiple backends including SQL LICENSE= GPLv2 BROKEN_sparc64= Does not compile: error: to_string is not a member of std +NOT_FOR_ARCHS= i386 +NOT_FOR_ARCHS_REASON= archs with 32-bits time_t are no longer supported by upstream LIB_DEPENDS= libboost_serialization.so:devel/boost-libs \ libcurl.so:ftp/curl |