Clean up documentation around gnutls and C++-11

This commit is contained in:
Jay Berkenbilt 2019-11-11 14:09:00 -05:00
parent db7d6030a0
commit b76af9242f
2 changed files with 36 additions and 8 deletions

View File

@ -31,7 +31,9 @@ QPDF requires a C++ compiler that supports C++-11.
QPDF depends on the external libraries [zlib](http://www.zlib.net/) and [jpeg](http://www.ijg.org/files/). The [libjpeg-turbo](https://libjpeg-turbo.org/) library is also known to work since it is compatible with the regular jpeg library, and QPDF doesn't use any interfaces that aren't present in the straight jpeg8 API. These are part of every Linux distribution and are readily available. Download information appears in the documentation. For Windows, you can download pre-built binary versions of these libraries for some compilers; see [README-windows.md](README-windows.md) for additional details.
If the optional gnutls crypto provider is enabled, then gnutls is also required. This is discussed more in `Crypto providers` below.
If the optional gnutls crypto provider is enabled,
then [gnutls](https://www.gnutls.org/) is also required. This is
discussed more in `Crypto providers` below.
# Licensing terms of embedded software

View File

@ -116,6 +116,11 @@
The qpdf package has few external dependencies. In order to build
qpdf, the following packages are required:
<itemizedlist>
<listitem>
<para>
A C++ compiler that supports C++-11.
</para>
</listitem>
<listitem>
<para>
zlib: <ulink url="http://www.zlib.net/">http://www.zlib.net/</ulink>
@ -129,6 +134,13 @@
url="https://libjpeg-turbo.org/">https://libjpeg-turbo.org/</ulink>
</para>
</listitem>
<listitem>
<para>
<emphasis>Recommended but not required:</emphasis> gnutls:
<ulink url="https://www.gnutls.org/">https://www.gnutls.org/</ulink>
to be able to use the gnutls crypto provider
</para>
</listitem>
<listitem>
<para>
gnu make 3.81 or newer: <ulink url="http://www.gnu.org/software/make">http://www.gnu.org/software/make</ulink>
@ -151,13 +163,6 @@
-u</command>.
</para>
</listitem>
<listitem>
<para>
A C++ compiler that works well with STL and has the <type>long
long</type> type. Most modern C++ compilers should fit the bill
fine. QPDF is tested with gcc, clang, and Microsoft Visual C++.
</para>
</listitem>
</itemizedlist>
</para>
<para>
@ -4623,6 +4628,27 @@ print "\n";
<term>9.1.rc1: November 9, 2019</term>
<listitem>
<itemizedlist>
<listitem>
<para>
Build Changes
</para>
<itemizedlist>
<listitem>
<para>
A C++-11 compiler is now required to build qpdf.
</para>
</listitem>
<listitem>
<para>
A new crypto provider that uses gnutls for crypto functions
is now available and can be enabled at build time. See <xref
linkend="ref.crypto"/> for more information about crypto
providers and <xref linkend="ref.crypto.build"/> for
specific information about the build.
</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>
Library Enhancements