Commit 8fbba4d48c588e7466e38572f399c4c8a5470038
1 parent
0d382994
2.1.1 -- gcc 4.4 fixes
git-svn-id: svn+q:///qpdf/trunk@925 71b93d88-0707-0410-a8cf-f5a4172ac649
Showing
6 changed files
with
28 additions
and
5 deletions
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 | 2009-10-30 Jay Berkenbilt <ejb@ql.org> | 8 | 2009-10-30 Jay Berkenbilt <ejb@ql.org> |
| 2 | 9 | ||
| 3 | * 2.1: release | 10 | * 2.1: release |
configure.ac
| @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. | ||
| 2 | dnl This config.in requires autoconf 2.5 or greater. | 2 | dnl This config.in requires autoconf 2.5 or greater. |
| 3 | 3 | ||
| 4 | AC_PREREQ(2.60) | 4 | AC_PREREQ(2.60) |
| 5 | -AC_INIT(qpdf,2.1) | 5 | +AC_INIT(qpdf,2.1.1) |
| 6 | 6 | ||
| 7 | AC_CONFIG_MACRO_DIR([m4]) | 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | AC_CONFIG_FILES([autoconf.mk]) | 8 | AC_CONFIG_FILES([autoconf.mk]) |
libqpdf/QPDF.cc
| @@ -15,7 +15,7 @@ | @@ -15,7 +15,7 @@ | ||
| 15 | #include <qpdf/QPDF_Null.hh> | 15 | #include <qpdf/QPDF_Null.hh> |
| 16 | #include <qpdf/QPDF_Dictionary.hh> | 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 | void | 20 | void |
| 21 | QPDF::InputSource::setLastOffset(off_t offset) | 21 | QPDF::InputSource::setLastOffset(off_t offset) |
libqpdf/qpdf/Pl_AES_PDF.hh
| @@ -3,6 +3,9 @@ | @@ -3,6 +3,9 @@ | ||
| 3 | 3 | ||
| 4 | #include <qpdf/Pipeline.hh> | 4 | #include <qpdf/Pipeline.hh> |
| 5 | #include <qpdf/qpdf-config.h> | 5 | #include <qpdf/qpdf-config.h> |
| 6 | +#ifdef HAVE_STDINT_H | ||
| 7 | +# include <stdint.h> | ||
| 8 | +#endif | ||
| 6 | 9 | ||
| 7 | // This pipeline implements AES-128 with CBC and block padding as | 10 | // This pipeline implements AES-128 with CBC and block padding as |
| 8 | // specified in the PDF specification. | 11 | // specified in the PDF specification. |
manual/qpdf-manual.xml
| @@ -5,8 +5,8 @@ | @@ -5,8 +5,8 @@ | ||
| 5 | <!ENTITY mdash "—"> | 5 | <!ENTITY mdash "—"> |
| 6 | <!ENTITY ndash "–"> | 6 | <!ENTITY ndash "–"> |
| 7 | <!ENTITY nbsp " "> | 7 | <!ENTITY nbsp " "> |
| 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 | <book> | 11 | <book> |
| 12 | <bookinfo> | 12 | <bookinfo> |
| @@ -2072,6 +2072,19 @@ print "\n"; | @@ -2072,6 +2072,19 @@ print "\n"; | ||
| 2072 | </para> | 2072 | </para> |
| 2073 | <variablelist> | 2073 | <variablelist> |
| 2074 | <varlistentry> | 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 | <term>2.1: October 30, 2009</term> | 2088 | <term>2.1: October 30, 2009</term> |
| 2076 | <listitem> | 2089 | <listitem> |
| 2077 | <itemizedlist> | 2090 | <itemizedlist> |
qpdf.spec
| 1 | Summary: Command-line tools and library for transforming PDF files | 1 | Summary: Command-line tools and library for transforming PDF files |
| 2 | Name: qpdf | 2 | Name: qpdf |
| 3 | -Version: 2.1 | 3 | +Version: 2.1.1 |
| 4 | Release: 1%{?dist} | 4 | Release: 1%{?dist} |
| 5 | License: Artistic | 5 | License: Artistic |
| 6 | Group: System Environment/Libraries | 6 | Group: System Environment/Libraries |