From f43cc84340730efed85585a54aa792af55b05100 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Tue, 24 Sep 2019 21:53:51 +0000 Subject: [PATCH] Port to FreeBSD and maybe more (#162) * Make Unix conditionals the fallback Provides a clear path what needs to be ported if the system is neither Windows nor POSIX-like. If the difference from Linux is minor like on macOS or BSDs then new conditionals can be added on case-by-case basis. * gstreamer-plugin: sync Meson version check with CMake * gstreamer-plugin: don't assume CMake can find libs by default --- subprojects/gst-plugins-bad/ext/svtav1/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/svtav1/meson.build b/subprojects/gst-plugins-bad/ext/svtav1/meson.build index bbf0e73534..8a2d2a6e35 100644 --- a/subprojects/gst-plugins-bad/ext/svtav1/meson.build +++ b/subprojects/gst-plugins-bad/ext/svtav1/meson.build @@ -5,7 +5,7 @@ project('gst-svt-av1', 'c', default_options : [ 'buildtype=debugoptimized' ]) # standard gst-plugins-bad dependencies and configuration -gst_req = '>= 1.15.1' +gst_req = '>= 1.8' gst_dep = dependency('gstreamer-1.0', version : gst_req, fallback : ['gstreamer', 'gst_dep']) gstbase_dep = dependency('gstreamer-base-1.0', version : gst_req,