From 3f495ce1da4e41713b7bee38db15d9240b3afba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 8 May 2020 14:32:20 +0300 Subject: [PATCH] gstreamer/plugin: Register plugins with the correct minor version when building for 1.18 --- gstreamer/src/subclass/plugin_1_14.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gstreamer/src/subclass/plugin_1_14.rs b/gstreamer/src/subclass/plugin_1_14.rs index 7bccedf36..d2b53cf97 100644 --- a/gstreamer/src/subclass/plugin_1_14.rs +++ b/gstreamer/src/subclass/plugin_1_14.rs @@ -12,6 +12,8 @@ pub const MAJOR_VERSION: i32 = 1; pub const MINOR_VERSION: i32 = 14; #[cfg(all(feature = "v1_16", not(feature = "v1_18")))] pub const MINOR_VERSION: i32 = 16; +#[cfg(all(feature = "v1_18", not(feature = "v1_20")))] +pub const MINOR_VERSION: i32 = 17; #[macro_export] macro_rules! gst_plugin_define(