freebsd-ports/multimedia/gstreamer1-plugins-bad/files/patch-gst-libs_gst_isoff_meson.build
Michal Zielonka e3b732b479
Update gstreamer1 to upstream release 1.20.3
PR:		261585
Reviewed by:	riggs,jbeich,tcberner

Differential Revision:	https://reviews.freebsd.org/D36850
2022-10-15 12:46:46 +02:00

21 lines
716 B
Text

--- gst-libs/gst/isoff/meson.build.orig 2022-09-15 15:00:43 UTC
+++ gst-libs/gst/isoff/meson.build
@@ -1,3 +1,4 @@
+if get_option('isoff').enabled()
isoff_sources = [
'gstisoff.c',
]
@@ -6,6 +7,8 @@ isoff_headers = [
]
install_headers(isoff_headers, subdir : 'gstreamer-1.0/gst/isoff')
+pkg_name = 'gstreamer-isoff-1.0'
+
gstisoff = library('gstisoff-' + api_version,
isoff_sources,
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API', '-DBUILDING_GST_ISOFF', '-DG_LOG_DOMAIN="GStreamer-ISOFF"'],
@@ -20,3 +23,4 @@ gstisoff = library('gstisoff-' + api_version,
gstisoff_dep = declare_dependency(link_with : gstisoff,
include_directories : [libsinc],
dependencies : [gstbase_dep])
+endif