Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default to OpenSSL 1.1.x instead of 1.0.x. #2448

Merged
merged 1 commit into from
Jun 7, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tls/dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ configuration "openssl" {
if (!opensslVersion.length)
{
writeln("\tWarning: Could not find OpenSSL version via pkg-config nor by calling the openssl binary.");
writeln("\tAssuming version 1.0.0.");
writeln("\tAssuming version 1.1.0.");
writeln("\tYou might need to export PKG_CONFIG_PATH or install the openssl package if you have a library-only package.");
opensslVersion = "1.0.0";
opensslVersion = "1.1.0";
}
auto data = text("module openssl_version;\nenum OPENSSL_VERSION=\"", opensslVersion, "\";\n");
auto output = dir.buildPath("openssl_version.d");
Expand Down