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. --- copy_dlls | 1 + 1 file changed, 1 insertion(+) (limited to 'copy_dlls') diff --git a/copy_dlls b/copy_dlls index 8511abce..72fe95a0 100644 --- a/copy_dlls +++ b/copy_dlls @@ -98,6 +98,7 @@ sub get_dlls my $dll = $1; $dll =~ tr/A-Z/a-z/; next if $dll =~ m/^(kernel32|user32|msvcrt|advapi32)\.dll$/; + next if $dll =~ m/^(api-ms-win.*|ws2_32|crypt32|bcrypt)\.dll$/; push(@result, $dll); } elsif (m/^Magic.*\((PE.+?)\)/) -- cgit v1.2.3-54-g00ecf