diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-22 17:06:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-22 17:06:11 +0100 |
| commit | 67860add14ebf13c0fea0c8fb00f60d3335cb363 (patch) | |
| tree | af1b7d83b12c48ce57724a0b2df643f23aa400c5 | |
| parent | c398f539a3392b721cd38800946a16eb24ec55e5 (diff) | |
Make newer OpenSSL versions still work with SHA-1 signatures.
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index c13d292fd..f75f943f9 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -483,6 +483,8 @@ LIBDCP_ENABLE_WARNINGS render_text (subs, dcp::Size(640, 480), DCPTime(), 24); #endif + setenv("OPENSSL_ENABLE_SHA1_SIGNATURES", "1", 1); + Ratio::setup_ratios (); PresetColourConversion::setup_colour_conversion_presets (); DCPContentType::setup_dcp_content_types (); |
