From 8aed40f806ab9c05a3a37987ffec68b594a37734 Mon Sep 17 00:00:00 2001 From: "Sven M. Hallberg" <pesco@khjk.org> Date: Fri, 21 Feb 2020 00:25:55 +0100 Subject: [PATCH] compile with object streams by default --- pdf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pdf.c b/pdf.c index 18ebac1..b4abd33 100644 --- a/pdf.c +++ b/pdf.c @@ -1784,10 +1784,9 @@ p_stream_data__m(HAllocator *mm__, const Dict *dict) /* interpret known stream types */ if (bytes_eq(v->bytes, "XRef")) return p_xrefdata__m(mm__, dict); -#ifdef OBJSTM +#ifndef NOOBJSTM if (bytes_eq(v->bytes, "ObjStm")) return p_objstm__m(mm__, dict); - //return h_action(h_many(h_uint8()), act_token, NULL); #endif return NULL; /* unrecognized type */ -- GitLab