From 857bb208d338e117f2a864407e34de76da360d8a Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sun, 24 May 2015 15:34:56 -0400 Subject: [PATCH] include time.h in QUtil.hh QUtil.hh needs time.h to get time_t on some platforms. Thanks Peter Korsgaard --- ChangeLog | 4 ++++ include/qpdf/QUtil.hh | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 798addd4..99c1690f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-05-24 Jay Berkenbilt + + * Include time.h in QUtil.hh for time_t + 2015-02-21 Jay Berkenbilt * Detect loops in Pages structure. Thanks to Gynvael Coldwind and diff --git a/include/qpdf/QUtil.hh b/include/qpdf/QUtil.hh index 5c2e5488..7f912e2d 100644 --- a/include/qpdf/QUtil.hh +++ b/include/qpdf/QUtil.hh @@ -14,6 +14,7 @@ #include #include #include +#include class RandomDataProvider;