2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-28 04:59:05 +00:00

Use gnutls crypto provider in the AppImage

This commit is contained in:
Jay Berkenbilt 2019-11-10 20:19:59 -05:00
parent 0e94aa6919
commit 5e936dddff
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM ubuntu:14.04 FROM ubuntu:14.04
RUN apt-get update && \ RUN apt-get update && \
apt-get -y install screen autoconf git \ apt-get -y install screen autoconf git \
build-essential zlib1g-dev libjpeg-dev \ build-essential zlib1g-dev libjpeg-dev libgnutls28-dev \
docbook-xsl fop xsltproc \ docbook-xsl fop xsltproc \
inkscape imagemagick busybox-static wget fuse && \ inkscape imagemagick busybox-static wget fuse && \
apt-get clean && \ apt-get clean && \

View File

@ -84,6 +84,7 @@ rm -rf $here/build
# Prepare build of QPDF from sources: # Prepare build of QPDF from sources:
./configure --prefix=/usr --enable-werror \ ./configure --prefix=/usr --enable-werror \
--enable-crypto-gnutls --disable-implicit-crypto \
--enable-show-failed-test-output \ --enable-show-failed-test-output \
--enable-html-doc --enable-pdf-doc "$CUSTOM_CONFIGURE" --enable-html-doc --enable-pdf-doc "$CUSTOM_CONFIGURE"