diff options
author | obache <obache@pkgsrc.org> | 2010-07-15 09:01:53 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-07-15 09:01:53 +0000 |
commit | 43d9a90d1fc4cca07d1128a0143ee7dee991cb07 (patch) | |
tree | 50a7c6680e60acbc1b603e055104ddba4ff1ac3c /print | |
parent | 6001e7be0e93f51a5f4f25bc21a9d565bb96f6a4 (diff) | |
download | pkgsrc-43d9a90d1fc4cca07d1128a0143ee7dee991cb07.tar.gz |
Fixes macro names for NetBSD. noticed by wiz@.
Diffstat (limited to 'print')
-rw-r--r-- | print/poppler/distinfo | 4 | ||||
-rw-r--r-- | print/poppler/patches/patch-aq | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/print/poppler/distinfo b/print/poppler/distinfo index cf5bc9e757b..5e03fd6a3b2 100644 --- a/print/poppler/distinfo +++ b/print/poppler/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.56 2010/07/15 04:33:49 obache Exp $ +$NetBSD: distinfo,v 1.57 2010/07/15 09:01:53 obache Exp $ SHA1 (poppler-0.14.1.tar.gz) = 28229f897451feba5682d74defe7d67361eeee11 RMD160 (poppler-0.14.1.tar.gz) = 7b8d084b05ccc374e9add9771b781a88948907a7 @@ -10,4 +10,4 @@ SHA1 (patch-ag) = 7ef9ccdb1a6719510c6941864b8c7db3cc0255f1 SHA1 (patch-ai) = a51dba3fb0e7131873ef82ae5e256fb1d17cee53 SHA1 (patch-ao) = cf7e0f086522147a91f59b1b26ca510d1971ac74 SHA1 (patch-ap) = fc985510d4ebabe097e55bc4cbb0477267e95a7d -SHA1 (patch-aq) = e5dd7a45a2775c62b02d5d5b2fbf03a1f029fa8d +SHA1 (patch-aq) = da8d845bf07b057bda38aff85e7558fbeded5a8d diff --git a/print/poppler/patches/patch-aq b/print/poppler/patches/patch-aq index d94476665ae..1dd341c527f 100644 --- a/print/poppler/patches/patch-aq +++ b/print/poppler/patches/patch-aq @@ -1,4 +1,4 @@ -$NetBSD: patch-aq,v 1.1 2010/07/15 04:33:49 obache Exp $ +$NetBSD: patch-aq,v 1.2 2010/07/15 09:01:53 obache Exp $ --- poppler/TextOutputDev.cc.orig 2010-06-08 20:06:31.000000000 +0000 +++ poppler/TextOutputDev.cc @@ -6,7 +6,7 @@ $NetBSD: patch-aq,v 1.1 2010/07/15 04:33:49 obache Exp $ #include "ICSupport.h" #endif -+#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD) && __NetBSD_Version >= 599002100) ++#if !(defined(__DragonFly__) && __DragonFly_version >= 200204) && !(defined(__NetBSD__) && __NetBSD_Version__ >= 599002100) +static double fmax(double x, double y) { if (isnan(x)) return y; if (isnan(y)) return x; return (x > y ? x : y);} +static double fmin(double x, double y) { if (isnan(x)) return y; if (isnan(y)) return x; return (x < y ? x : y);} +#endif |