summaryrefslogtreecommitdiffstats
path: root/qpdf/build.mk
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2018-02-18 00:47:57 +0100
committerJay Berkenbilt <ejb@ql.org>2018-02-19 03:06:27 +0100
commit4bb3046f0b139337a00e9182c9b47d1a3f8f8bb3 (patch)
tree455bf56b35aeda95a9e4581f7e0c31cf7d07c877 /qpdf/build.mk
parent2780a1871d2603e9b273580fb7978d277832c2fc (diff)
downloadqpdf-4bb3046f0b139337a00e9182c9b47d1a3f8f8bb3.tar.zst
Properly handle strings with PDF Doc Encoding (fixes #179)
The QPDF_String::getUTF8Val() method was not treating strings that weren't explicitly Unicode as PDF Doc Encoded. This only affects characters in the range 0x80 through 0xa0.
Diffstat (limited to 'qpdf/build.mk')
-rw-r--r--qpdf/build.mk8
1 files changed, 7 insertions, 1 deletions
diff --git a/qpdf/build.mk b/qpdf/build.mk
index 1bc21836..1692fc92 100644
--- a/qpdf/build.mk
+++ b/qpdf/build.mk
@@ -1,4 +1,10 @@
-BINS_qpdf = qpdf test_driver pdf_from_scratch test_large_file test_tokenizer
+BINS_qpdf = \
+ qpdf \
+ pdf_from_scratch \
+ test_driver \
+ test_large_file \
+ test_pdf_doc_encoding \
+ test_tokenizer
CBINS_qpdf = qpdf-ctest
TARGETS_qpdf = $(foreach B,$(BINS_qpdf) $(CBINS_qpdf),qpdf/$(OUTPUT_DIR)/$(call binname,$(B)))