gnu: gst-plugins-base: Don't build with Opus for 32-bit systems.
Fixes <https://bugs.gnu.org/32360> and <https://bugs.gnu.org/32466>. * gnu/packages/gstreamer.scm (gst-plugins-base)[inputs]: Exclude opus when building for 32-bit systems. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
72e782b2b5
commit
399c5fafcd
|
@ -4,7 +4,7 @@
|
||||||
;;; Copyright © 2015, 2016 Sou Bunnbu <iyzsong@gmail.com>
|
;;; Copyright © 2015, 2016 Sou Bunnbu <iyzsong@gmail.com>
|
||||||
;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2015, 2018 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
|
@ -167,7 +167,6 @@ This package provides the core library and elements.")
|
||||||
("orc" ,orc))) ;required by gstreamer-audio-1.0.pc
|
("orc" ,orc))) ;required by gstreamer-audio-1.0.pc
|
||||||
(inputs
|
(inputs
|
||||||
`(("cdparanoia" ,cdparanoia)
|
`(("cdparanoia" ,cdparanoia)
|
||||||
("opus" ,opus)
|
|
||||||
("pango" ,pango)
|
("pango" ,pango)
|
||||||
("libogg" ,libogg)
|
("libogg" ,libogg)
|
||||||
("libtheora" ,libtheora)
|
("libtheora" ,libtheora)
|
||||||
|
@ -176,7 +175,12 @@ This package provides the core library and elements.")
|
||||||
("zlib" ,zlib)
|
("zlib" ,zlib)
|
||||||
("libXext" ,libxext)
|
("libXext" ,libxext)
|
||||||
("libxv" ,libxv)
|
("libxv" ,libxv)
|
||||||
("alsa-lib" ,alsa-lib)))
|
("alsa-lib" ,alsa-lib)
|
||||||
|
;; XXX Don't build with opus on 32-bit systems:
|
||||||
|
;; <https://bugs.gnu.org/32360>
|
||||||
|
,@(if (target-64bit?)
|
||||||
|
`(("opus" ,opus))
|
||||||
|
'())))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("glib:bin" ,glib "bin")
|
("glib:bin" ,glib "bin")
|
||||||
|
|
Loading…
Reference in New Issue