diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2022-12-10 15:24:06 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2022-12-10 15:24:56 +0100 |
| commit | a2faea780f345dbd51bbea149237f659c766b64a (patch) | |
| tree | bcd2e041eef8d37f1f5c3ed65a8305681565aec9 /meson.build | |
| parent | 7d1b5ec6922a0d0f437431a4fe1e694d3a7538c4 (diff) | |
Use modern openssl hash methods
The old ones was marked as deprecated in openssl 3.0.0 but
the replaments have been in openssl since 1.1.0.
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 9f23dfc..7470152 100644 --- a/meson.build +++ b/meson.build @@ -242,7 +242,7 @@ travel_dep = declare_dependency( link_with: travel_lib, dependencies: [image_dep, mediainfo_dep, timezone_dep]) -openssl_dep = dependency('openssl', version: '>= 1.0') +openssl_dep = dependency('openssl', version: '>= 1.1.0') hash_methods = [] if openssl_dep.found() |
