mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-02 19:49:43 +00:00
4e8d21d849
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.
11 lines
306 B
Bash
Executable File
11 lines
306 B
Bash
Executable File
#!/bin/bash
|
|
cd $(dirname $0)/..
|
|
set -ex
|
|
sudo apt-get update
|
|
sudo apt-get -y install \
|
|
autoconf build-essential zlib1g-dev libjpeg-dev \
|
|
docbook-xsl fop xsltproc libxml2-utils inkscape imagemagick
|
|
./configure --enable-doc-maintenance
|
|
make -j$(nproc) distfiles.zip
|
|
build-scripts/download-external-libs
|