diff --git a/6.6.2/_tools/openssl-3.0.13-WIN32.7z b/6.6.2/_tools/openssl-3.0.13-WIN32.7z new file mode 100644 index 0000000..34011e1 Binary files /dev/null and b/6.6.2/_tools/openssl-3.0.13-WIN32.7z differ diff --git a/6.6.2/_tools/openssl-3.0.13-WIN64A.7z b/6.6.2/_tools/openssl-3.0.13-WIN64A.7z new file mode 100644 index 0000000..c43bf0e Binary files /dev/null and b/6.6.2/_tools/openssl-3.0.13-WIN64A.7z differ diff --git a/6.6.2/compile_win.pl b/6.6.2/compile_win.pl index 5ac3df2..072fb67 100644 --- a/6.6.2/compile_win.pl +++ b/6.6.2/compile_win.pl @@ -12,15 +12,15 @@ $current_dir =~ s#/#\\#g; # convert separators to Windows-style $prefix_dir =~ s#/#\\#g; # convert separators to Windows-style my $arch = $ARGV[0]; +$arch = "amd64" if ($arch eq ''); # amd64 is nothing is specified, can be x86 +die "Please specify architecture (x86 or amd64)" if ($arch ne "x86" && $arch ne "amd64"); # die if user specified anything except x86 or amd64 + my $openssl_version = "3.0.13"; # supported until 7th September 2026 my $openssl_download = "https://www.openssl.org/source/openssl-$openssl_version.tar.gz"; my $openssl_arch = $arch eq "amd64" ? "WIN64A" : "WIN32"; my $openssl_dir = "$current_dir\\openssl-$openssl_version-$openssl_arch"; my $openssl_7z = "openssl-$openssl_version-$openssl_arch.7z"; -$arch = "x86" if ($arch eq ''); # specify x86 is nothing is specified -die "Please specify architecture (x86 or amd64)" if ($arch ne "x86" && $arch ne "amd64"); # die if user specified anything except x86 or amd64 - # will create a batch file my $batfile = 'compile_win.bat';