gst-plugins-base1: Update to 1.22.1
[oi-userland.git] / components / multimedia / gst-plugins-base1 / patches / 02-disable-qt-examples.patch
blob0ce603b8c85be1208b47fb835233fdfdba4f02df
2 Disable a bunch of the Qt5 stuff. Previous versions (1.16.x, 0.10.x) didn't
3 include any Qt5 stuff, and the current examples find qmake but build for
4 the wrong ABI (64 bit when the rest is 32 bit), causing link steps to fail.
6 If someone wants to add the .32 and .64 specific config to get qmake to
7 build the right ABI, these could be re-enabled and included.
9 diff -ur gst-plugins-base-1.18.5.orig/tests/examples/gl/meson.build gst-plugins-base-1.18.5/tests/examples/gl/meson.build
10 --- gst-plugins-base-1.18.5.orig/tests/examples/gl/meson.build 2021-09-08 14:02:22.223757700 +0000
11 +++ gst-plugins-base-1.18.5/tests/examples/gl/meson.build 2021-10-26 02:57:17.335389518 +0000
12 @@ -1,6 +1,8 @@
13 subdir('cocoa')
14 subdir('generic')
15 subdir('gtk', if_found : gtk_dep)
16 -qt5core_dep = dependency('qt5', modules : ['Core'], required : false)
17 -subdir('qt', if_found: qt5core_dep)
18 +# the Qt stuff currently isn't getting the 32 vs. 64 bit compilation
19 +# correct, so just disable it.
20 +#qt5core_dep = dependency('qt5', modules : ['Core'], required : false)
21 +#subdir('qt', if_found: qt5core_dep)
22 subdir('sdl')