Skip to content
Snippets Groups Projects
Commit 91c26acc authored by Sebastian Dröge's avatar Sebastian Dröge
Browse files

Disable Qt5 plugin on armhf/armel due to mesa headers being broken so that...

Disable Qt5 plugin on armhf/armel due to mesa headers being broken so that this package can move to testing (see #894076)
parent 83d6146c
No related branches found
No related tags found
No related merge requests found
gst-plugins-good1.0 (1.14.0-2) unstable; urgency=medium
* debian/control.in,
debian/rules:
+ Disable Qt5 plugin on armhf/armel due to mesa headers being broken so
that this package can move to testing (see #894076).
-- Sebastian Dröge <slomo@debian.org> Wed, 04 Apr 2018 12:12:43 +0300
gst-plugins-good1.0 (1.14.0-1) unstable; urgency=medium gst-plugins-good1.0 (1.14.0-1) unstable; urgency=medium
* New upstream stable release. * New upstream stable release.
......
...@@ -54,7 +54,8 @@ Description: GStreamer plugin for PulseAudio ...@@ -54,7 +54,8 @@ Description: GStreamer plugin for PulseAudio
for POSIX and WIN32 systems. for POSIX and WIN32 systems.
Package: gstreamer1.0-qt5 Package: gstreamer1.0-qt5
Architecture: any #Architecture: any
Architecture: any-amd64 any-arm64 any-i386 any-mips any-mips64el any-mipsel any-ppc64el any-s390x any-alpha any-hppa any-ia64 any-m68k any-powerpc any-powerpcspe any-ppc64 any-riscv64 any-sh4 any-sparc64 any-x32
Multi-Arch: same Multi-Arch: same
Section: graphics Section: graphics
Depends: ${misc:Depends}, Depends: ${misc:Depends},
......
...@@ -54,7 +54,8 @@ Description: GStreamer plugin for PulseAudio ...@@ -54,7 +54,8 @@ Description: GStreamer plugin for PulseAudio
for POSIX and WIN32 systems. for POSIX and WIN32 systems.
Package: @GST_PKGNAME@-qt5 Package: @GST_PKGNAME@-qt5
Architecture: any #Architecture: any
Architecture: any-amd64 any-arm64 any-i386 any-mips any-mips64el any-mipsel any-ppc64el any-s390x any-alpha any-hppa any-ia64 any-m68k any-powerpc any-powerpcspe any-ppc64 any-riscv64 any-sh4 any-sparc64 any-x32
Multi-Arch: same Multi-Arch: same
Section: graphics Section: graphics
Depends: ${misc:Depends}, Depends: ${misc:Depends},
......
...@@ -94,6 +94,15 @@ else ...@@ -94,6 +94,15 @@ else
oss4 = debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/gstreamer-$(gst_abi)/libgstoss4.so oss4 = debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/gstreamer-$(gst_abi)/libgstoss4.so
endif endif
# workaround for mesa headers being broken (#894076)
ifeq ($(DEB_HOST_ARCH_CPU),armel)
CONFIG_ARGS += --disable-qt
endif
ifeq ($(DEB_HOST_ARCH_CPU),armhf)
CONFIG_ARGS += --disable-qt
endif
ifeq ($(DEB_HOST_ARCH_OS),linux) ifeq ($(DEB_HOST_ARCH_OS),linux)
DEFAULT_AUDIOSINK = autoaudiosink DEFAULT_AUDIOSINK = autoaudiosink
DEFAULT_AUDIOSRC = autoaudiosrc DEFAULT_AUDIOSRC = autoaudiosrc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment