aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-12-14 03:35:31 +0100
committerJay Berkenbilt <ejb@ql.org>2009-12-14 03:35:31 +0100
commit8fbba4d48c588e7466e38572f399c4c8a5470038 (patch)
tree9c9807935440d123dbbefed3036d509e504a8e39 /libqpdf
parent0d3829949d4095e4d0dde8e7820d21a1c55aacc4 (diff)
downloadqpdf-8fbba4d48c588e7466e38572f399c4c8a5470038.tar.zst
2.1.1 -- gcc 4.4 fixes
git-svn-id: svn+q:///qpdf/trunk@925 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'libqpdf')
-rw-r--r--libqpdf/QPDF.cc2
-rw-r--r--libqpdf/qpdf/Pl_AES_PDF.hh3
2 files changed, 4 insertions, 1 deletions
diff --git a/libqpdf/QPDF.cc b/libqpdf/QPDF.cc
index 4317bdd0..ad270ba2 100644
--- a/libqpdf/QPDF.cc
+++ b/libqpdf/QPDF.cc
@@ -15,7 +15,7 @@
#include <qpdf/QPDF_Null.hh>
#include <qpdf/QPDF_Dictionary.hh>
-std::string QPDF::qpdf_version = "2.1";
+std::string QPDF::qpdf_version = "2.1.1";
void
QPDF::InputSource::setLastOffset(off_t offset)
diff --git a/libqpdf/qpdf/Pl_AES_PDF.hh b/libqpdf/qpdf/Pl_AES_PDF.hh
index 4f422d35..178ea1e1 100644
--- a/libqpdf/qpdf/Pl_AES_PDF.hh
+++ b/libqpdf/qpdf/Pl_AES_PDF.hh
@@ -3,6 +3,9 @@
#include <qpdf/Pipeline.hh>
#include <qpdf/qpdf-config.h>
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
// This pipeline implements AES-128 with CBC and block padding as
// specified in the PDF specification.