summaryrefslogtreecommitdiff
path: root/print
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2017-09-05 09:39:41 +0000
committertnn <tnn@pkgsrc.org>2017-09-05 09:39:41 +0000
commitb192564e7cd90650b438a37d134dde8f40ca99f9 (patch)
treedece5acbf9833c3f6de6fa2a70504191ee835bf3 /print
parent49f7f24be79ec8b7f26d8f7d99963310ecbfc977 (diff)
downloadpkgsrc-b192564e7cd90650b438a37d134dde8f40ca99f9.tar.gz
add a missing include
Diffstat (limited to 'print')
-rw-r--r--print/poppler/distinfo3
-rw-r--r--print/poppler/patches/patch-poppler_Form.cc14
2 files changed, 16 insertions, 1 deletions
diff --git a/print/poppler/distinfo b/print/poppler/distinfo
index ce84dc31465..70159c02162 100644
--- a/print/poppler/distinfo
+++ b/print/poppler/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.120 2017/09/04 19:57:18 ryoon Exp $
+$NetBSD: distinfo,v 1.121 2017/09/05 09:39:41 tnn Exp $
SHA1 (poppler-0.59.0.tar.xz) = 1b7d0a22aaf9a472181823ee9b38439471a4b045
RMD160 (poppler-0.59.0.tar.xz) = 8e0c2861dba339f911713d86ebbf97207c2de5dc
@@ -10,4 +10,5 @@ SHA1 (patch-ag) = d4df4fdf141186e1cc653bb467b31b3335d733ff
SHA1 (patch-aq) = da845661ef7f7aca3072dbeebde0444b4d8f01aa
SHA1 (patch-ar) = b064ff2dc9080ff5f1a1361e7798480ace11f3a3
SHA1 (patch-as) = 1238357e57fa310ba9c9f00768c46074b8325739
+SHA1 (patch-poppler_Form.cc) = 6a5c85b80b8bbcd9d9d3bafcfa07857c8a2cd06b
SHA1 (patch-qt5_src_Makefile.in) = c3a47fde201d61a7b7674020f5c998173a61b216
diff --git a/print/poppler/patches/patch-poppler_Form.cc b/print/poppler/patches/patch-poppler_Form.cc
new file mode 100644
index 00000000000..edea5e1f5b6
--- /dev/null
+++ b/print/poppler/patches/patch-poppler_Form.cc
@@ -0,0 +1,14 @@
+$NetBSD: patch-poppler_Form.cc,v 1.1 2017/09/05 09:39:41 tnn Exp $
+
+needs <ctype.h> for isdigit(3).
+
+--- poppler/Form.cc.orig 2017-08-15 22:16:09.000000000 +0000
++++ poppler/Form.cc
+@@ -31,6 +31,7 @@
+ #include <limits>
+ #include <stddef.h>
+ #include <string.h>
++#include <ctype.h>
+ #include "goo/gmem.h"
+ #include "goo/GooString.h"
+ #include "Error.h"