diff --git a/README.md b/README.md index 2356decb..96b3ace9 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/manual/qpdf-manual.xml b/manual/qpdf-manual.xml index 24747159..9e0d6533 100644 --- a/manual/qpdf-manual.xml +++ b/manual/qpdf-manual.xml @@ -116,6 +116,11 @@ The qpdf package has few external dependencies. In order to build qpdf, the following packages are required: + + + A C++ compiler that supports C++-11. + + zlib: http://www.zlib.net/ @@ -129,6 +134,13 @@ url="https://libjpeg-turbo.org/">https://libjpeg-turbo.org/ + + + Recommended but not required: gnutls: + https://www.gnutls.org/ + to be able to use the gnutls crypto provider + + gnu make 3.81 or newer: http://www.gnu.org/software/make @@ -151,13 +163,6 @@ -u. - - - A C++ compiler that works well with STL and has the long - long type. Most modern C++ compilers should fit the bill - fine. QPDF is tested with gcc, clang, and Microsoft Visual C++. - - @@ -4623,6 +4628,27 @@ print "\n"; 9.1.rc1: November 9, 2019 + + + Build Changes + + + + + A C++-11 compiler is now required to build qpdf. + + + + + A new crypto provider that uses gnutls for crypto functions + is now available and can be enabled at build time. See for more information about crypto + providers and for + specific information about the build. + + + + Library Enhancements