From 4e8d21d849dc4c562d02c4aa22683296cbd314f7 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 24 Oct 2020 19:31:09 -0400 Subject: Build Windows releases with openssl; automate external libraries External libraries for Windows are now built automatically in the qpdf/external-libs repository and include openssl in addition to zlib and jpeg. Use these, and update the Windows build to build with the openssl crypto provider by default. We leave the native crypto provider enabled in case there is a problem with openssl and also to continue to exercise that code. --- build-scripts/build-windows | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'build-scripts/build-windows') diff --git a/build-scripts/build-windows b/build-scripts/build-windows index 2ec6a500..f67b8f2e 100755 --- a/build-scripts/build-windows +++ b/build-scripts/build-windows @@ -23,14 +23,13 @@ fi if [ -f distfiles/distfiles.zip ]; then unzip distfiles/distfiles.zip fi -curl -L https://github.com/qpdf/qpdf/raw/external-libs/qpdf-external-libs-bin.zip -o qpdf-external-libs-bin.zip unzip qpdf-external-libs-bin.zip cwd=`pwd` PATH=$cwd/libqpdf/build:$PATH installdir=install-$tool$wordsize rm -rf $installdir -./config-$tool --enable-show-failed-test-output --disable-crypto-gnutls --disable-crypto-openssl +./config-$tool --enable-show-failed-test-output make -j$(nproc) -k make -k check make install -- cgit v1.2.3-54-g00ecf