mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-03 07:12:28 +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>
|
2009-10-30 Jay Berkenbilt <ejb@ql.org>
|
||||||
|
|
||||||
* 2.1: release
|
* 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.
|
dnl This config.in requires autoconf 2.5 or greater.
|
||||||
|
|
||||||
AC_PREREQ(2.60)
|
AC_PREREQ(2.60)
|
||||||
AC_INIT(qpdf,2.1)
|
AC_INIT(qpdf,2.1.1)
|
||||||
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_FILES([autoconf.mk])
|
AC_CONFIG_FILES([autoconf.mk])
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
#include <qpdf/QPDF_Null.hh>
|
#include <qpdf/QPDF_Null.hh>
|
||||||
#include <qpdf/QPDF_Dictionary.hh>
|
#include <qpdf/QPDF_Dictionary.hh>
|
||||||
|
|
||||||
std::string QPDF::qpdf_version = "2.1";
|
std::string QPDF::qpdf_version = "2.1.1";
|
||||||
|
|
||||||
void
|
void
|
||||||
QPDF::InputSource::setLastOffset(off_t offset)
|
QPDF::InputSource::setLastOffset(off_t offset)
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
|
|
||||||
#include <qpdf/Pipeline.hh>
|
#include <qpdf/Pipeline.hh>
|
||||||
#include <qpdf/qpdf-config.h>
|
#include <qpdf/qpdf-config.h>
|
||||||
|
#ifdef HAVE_STDINT_H
|
||||||
|
# include <stdint.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
// This pipeline implements AES-128 with CBC and block padding as
|
// This pipeline implements AES-128 with CBC and block padding as
|
||||||
// specified in the PDF specification.
|
// specified in the PDF specification.
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
<!ENTITY mdash "—">
|
<!ENTITY mdash "—">
|
||||||
<!ENTITY ndash "–">
|
<!ENTITY ndash "–">
|
||||||
<!ENTITY nbsp " ">
|
<!ENTITY nbsp " ">
|
||||||
<!ENTITY swversion "2.1">
|
<!ENTITY swversion "2.1.1">
|
||||||
<!ENTITY lastreleased "October 30, 2009">
|
<!ENTITY lastreleased "December 13, 2009">
|
||||||
]>
|
]>
|
||||||
<book>
|
<book>
|
||||||
<bookinfo>
|
<bookinfo>
|
||||||
@ -2071,6 +2071,19 @@ print "\n";
|
|||||||
<filename>ChangeLog</filename> in the source distribution.
|
<filename>ChangeLog</filename> in the source distribution.
|
||||||
</para>
|
</para>
|
||||||
<variablelist>
|
<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>
|
<varlistentry>
|
||||||
<term>2.1: October 30, 2009</term>
|
<term>2.1: October 30, 2009</term>
|
||||||
<listitem>
|
<listitem>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Command-line tools and library for transforming PDF files
|
Summary: Command-line tools and library for transforming PDF files
|
||||||
Name: qpdf
|
Name: qpdf
|
||||||
Version: 2.1
|
Version: 2.1.1
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: Artistic
|
License: Artistic
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
|
Loading…
Reference in New Issue
Block a user