mirror of
https://github.com/qpdf/qpdf.git
synced 2024-12-22 02:49:00 +00:00
2.1.1 -- gcc 4.4 fixes
git-svn-id: svn+q:///qpdf/trunk@925 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
parent
0d3829949d
commit
8fbba4d48c
@ -1,3 +1,10 @@
|
||||
2009-12-13 Jay Berkenbilt <ejb@ql.org>
|
||||
|
||||
* 2.1.1: release
|
||||
|
||||
* libqpdf/qpdf/Pl_AES_PDF.hh: include <stdint.h>, if available, so
|
||||
we have valid definitions of uint32_t.
|
||||
|
||||
2009-10-30 Jay Berkenbilt <ejb@ql.org>
|
||||
|
||||
* 2.1: release
|
||||
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
dnl This config.in requires autoconf 2.5 or greater.
|
||||
|
||||
AC_PREREQ(2.60)
|
||||
AC_INIT(qpdf,2.1)
|
||||
AC_INIT(qpdf,2.1.1)
|
||||
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AC_CONFIG_FILES([autoconf.mk])
|
||||
|
@ -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)
|
||||
|
@ -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.
|
||||
|
@ -5,8 +5,8 @@
|
||||
<!ENTITY mdash "—">
|
||||
<!ENTITY ndash "–">
|
||||
<!ENTITY nbsp " ">
|
||||
<!ENTITY swversion "2.1">
|
||||
<!ENTITY lastreleased "October 30, 2009">
|
||||
<!ENTITY swversion "2.1.1">
|
||||
<!ENTITY lastreleased "December 13, 2009">
|
||||
]>
|
||||
<book>
|
||||
<bookinfo>
|
||||
@ -2071,6 +2071,19 @@ print "\n";
|
||||
<filename>ChangeLog</filename> in the source distribution.
|
||||
</para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>2.1.1: December 13, 2009</term>
|
||||
<listitem>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>
|
||||
No changes in functionality; insert missing include in an
|
||||
internal library header file to support gcc 4.4.
|
||||
</para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>2.1: October 30, 2009</term>
|
||||
<listitem>
|
||||
|
Loading…
Reference in New Issue
Block a user