Commit 8fbba4d48c588e7466e38572f399c4c8a5470038

Authored by Jay Berkenbilt
1 parent 0d382994

2.1.1 -- gcc 4.4 fixes

git-svn-id: svn+q:///qpdf/trunk@925 71b93d88-0707-0410-a8cf-f5a4172ac649
ChangeLog
  1 +2009-12-13 Jay Berkenbilt <ejb@ql.org>
  2 +
  3 + * 2.1.1: release
  4 +
  5 + * libqpdf/qpdf/Pl_AES_PDF.hh: include <stdint.h>, if available, so
  6 + we have valid definitions of uint32_t.
  7 +
1 8 2009-10-30 Jay Berkenbilt <ejb@ql.org>
2 9  
3 10 * 2.1: release
... ...
configure.ac
... ... @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
2 2 dnl This config.in requires autoconf 2.5 or greater.
3 3  
4 4 AC_PREREQ(2.60)
5   -AC_INIT(qpdf,2.1)
  5 +AC_INIT(qpdf,2.1.1)
6 6  
7 7 AC_CONFIG_MACRO_DIR([m4])
8 8 AC_CONFIG_FILES([autoconf.mk])
... ...
libqpdf/QPDF.cc
... ... @@ -15,7 +15,7 @@
15 15 #include <qpdf/QPDF_Null.hh>
16 16 #include <qpdf/QPDF_Dictionary.hh>
17 17  
18   -std::string QPDF::qpdf_version = "2.1";
  18 +std::string QPDF::qpdf_version = "2.1.1";
19 19  
20 20 void
21 21 QPDF::InputSource::setLastOffset(off_t offset)
... ...
libqpdf/qpdf/Pl_AES_PDF.hh
... ... @@ -3,6 +3,9 @@
3 3  
4 4 #include <qpdf/Pipeline.hh>
5 5 #include <qpdf/qpdf-config.h>
  6 +#ifdef HAVE_STDINT_H
  7 +# include <stdint.h>
  8 +#endif
6 9  
7 10 // This pipeline implements AES-128 with CBC and block padding as
8 11 // specified in the PDF specification.
... ...
manual/qpdf-manual.xml
... ... @@ -5,8 +5,8 @@
5 5 <!ENTITY mdash "&#x2014;">
6 6 <!ENTITY ndash "&#x2013;">
7 7 <!ENTITY nbsp "&#xA0;">
8   -<!ENTITY swversion "2.1">
9   -<!ENTITY lastreleased "October 30, 2009">
  8 +<!ENTITY swversion "2.1.1">
  9 +<!ENTITY lastreleased "December 13, 2009">
10 10 ]>
11 11 <book>
12 12 <bookinfo>
... ... @@ -2072,6 +2072,19 @@ print &quot;\n&quot;;
2072 2072 </para>
2073 2073 <variablelist>
2074 2074 <varlistentry>
  2075 + <term>2.1.1: December 13, 2009</term>
  2076 + <listitem>
  2077 + <itemizedlist>
  2078 + <listitem>
  2079 + <para>
  2080 + No changes in functionality; insert missing include in an
  2081 + internal library header file to support gcc 4.4.
  2082 + </para>
  2083 + </listitem>
  2084 + </itemizedlist>
  2085 + </listitem>
  2086 + </varlistentry>
  2087 + <varlistentry>
2075 2088 <term>2.1: October 30, 2009</term>
2076 2089 <listitem>
2077 2090 <itemizedlist>
... ...
qpdf.spec
1 1 Summary: Command-line tools and library for transforming PDF files
2 2 Name: qpdf
3   -Version: 2.1
  3 +Version: 2.1.1
4 4 Release: 1%{?dist}
5 5 License: Artistic
6 6 Group: System Environment/Libraries
... ...