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.
17 lines
333 B
Bash
Executable File
17 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
cd $(dirname $0)/..
|
|
unzip qpdf-external-libs-src.zip
|
|
tar xzf external-libs-src/jpegsrc*
|
|
cd jpeg-*
|
|
./configure
|
|
make -k
|
|
sudo make install
|
|
cd ..
|
|
if [ -f distfiles/distfiles.zip ]; then
|
|
unzip distfiles/distfiles.zip
|
|
fi
|
|
./configure --enable-werror --enable-show-failed-test-output
|
|
make -j$(nproc) -k
|
|
make -k check
|