From 8986937482cb2e77f8a9894a9872977dcd0a0536 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sun, 26 Mar 2023 18:14:09 +0200 Subject: [PATCH] build: Add OpenSSL as a dependency It is required by the native-tls crate, tht depends on the openssl crate. The minimum supported version by taht crate is currently 1.0.1. --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 977b0d6b..9a3737cf 100644 --- a/meson.build +++ b/meson.build @@ -26,6 +26,7 @@ dependency('gstreamer-1.0', version: '>= 1.20') dependency('gstreamer-base-1.0', version: '>= 1.20') dependency('gstreamer-plugins-base-1.0', version: '>= 1.20') dependency('gstreamer-video-1.0', version: '>= 1.20') +dependency('openssl', version: '>= 1.0.1') glib_compile_resources = find_program('glib-compile-resources', required: true) glib_compile_schemas = find_program('glib-compile-schemas', required: true)