mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +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.
10 lines
286 B
Bash
Executable File
10 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
if cl 2>&1 | grep -q 'for x64'; then
|
|
wordsize=64
|
|
else
|
|
wordsize=32
|
|
fi
|
|
CC=cl CXX="cl -TP -GR" ./configure --disable-test-compare-images --enable-external-libs --enable-werror --with-buildrules=msvc ${1+"$@"} --enable-crypto-openssl --disable-crypto-gnutls
|