diff options
author | rodent <rodent@pkgsrc.org> | 2015-02-17 02:00:07 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2015-02-17 02:00:07 +0000 |
commit | 9c692874c2fd96cf1e7be1b1bc0433c6bd589451 (patch) | |
tree | 6f7fa3fa304e5a644f9b69a785d3edf64a5d82b9 /net/powerdns | |
parent | 66e2dc97668be667426a89bb5bbf0c00cf36f504 (diff) | |
download | pkgsrc-9c692874c2fd96cf1e7be1b1bc0433c6bd589451.tar.gz |
Include <machine/endian.h> for NetBSD too, which keeps BYTE_ORDER from
being redefined. This was a problem on OpenBSD in a previous version of the
package too. Defuzz patches.
Diffstat (limited to 'net/powerdns')
-rw-r--r-- | net/powerdns/distinfo | 4 | ||||
-rw-r--r-- | net/powerdns/patches/patch-pdns_dns.hh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/powerdns/distinfo b/net/powerdns/distinfo index bf48305401c..c64ce8b9353 100644 --- a/net/powerdns/distinfo +++ b/net/powerdns/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2015/01/12 11:40:43 jperkin Exp $ +$NetBSD: distinfo,v 1.17 2015/02/17 02:00:07 rodent Exp $ SHA1 (pdns-3.4.1.tar.bz2) = e4d807b4dc27ef130a49e0efaf82a74cb66f5b11 RMD160 (pdns-3.4.1.tar.bz2) = fe9df921ac82db834bc011c7c20ad9b436c70cec @@ -10,7 +10,7 @@ SHA1 (patch-modules_luabackend_luabackend.hh) = fd1d04d71ff560efd92137bd468475d5 SHA1 (patch-modules_pipebackend_pipebackend.cc) = 51cd06282231768df2e6f82c01e30575dc390a95 SHA1 (patch-modules_pipebackend_pipebackend.hh) = 3ff9f666a1b348810be38ffe67fd740521390630 SHA1 (patch-pdns_botan18signers.cc) = 6827a3e2eade467c53d710b57352bd9ed978b47c -SHA1 (patch-pdns_dns.hh) = c8864cd742a2f5bd8209e6ab569d018dbff3f836 +SHA1 (patch-pdns_dns.hh) = ced89abc892e4790f2968858122fca5a02b17a30 SHA1 (patch-pdns_dnspacket.cc) = 9b3abf3e572d0cdf978d18caca82b601d55f3cc1 SHA1 (patch-pdns_dnsparser.cc) = ec1a279a48825a2adbc528a644b711d225a7e728 SHA1 (patch-pdns_dnsparser.hh) = d9480c40b97fb8c7d8f1dbbe1777c42ef270d9d1 diff --git a/net/powerdns/patches/patch-pdns_dns.hh b/net/powerdns/patches/patch-pdns_dns.hh index 6b819b72bb8..cb8b9060443 100644 --- a/net/powerdns/patches/patch-pdns_dns.hh +++ b/net/powerdns/patches/patch-pdns_dns.hh @@ -1,4 +1,4 @@ -$NetBSD: patch-pdns_dns.hh,v 1.2 2014/12/10 14:50:09 fhajny Exp $ +$NetBSD: patch-pdns_dns.hh,v 1.3 2015/02/17 02:00:07 rodent Exp $ Add DragonFly support. --- pdns/dns.hh.orig 2014-10-30 10:18:22.000000000 +0000 @@ -8,7 +8,7 @@ Add DragonFly support. }; -#if __FreeBSD__ || __APPLE__ || __OpenBSD__ || defined(__FreeBSD_kernel__) -+#if __FreeBSD__ || __APPLE__ || __OpenBSD__ || __DragonFly__ || defined(__FreeBSD_kernel__) ++#if defined(__FreeBSD__) || defined(__APPLE__) || defined(__OpenBSD__) || defined(__DragonFly__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) #include <machine/endian.h> #elif __linux__ || __GNU__ # include <endian.h> |