SDL2: disable pipewire on ppcle
This commit is contained in:
parent
0d9556b859
commit
e0f655d7e1
1 changed files with 6 additions and 1 deletions
|
@ -19,7 +19,7 @@ checksum=65be9ff6004034b5b2ce9927b5a4db1814930f169c4b2dae0a1e4697075f287b
|
|||
|
||||
# Package build options
|
||||
build_options="gles opengl pulseaudio pipewire sndio vulkan wayland x11"
|
||||
build_options_default="gles opengl pulseaudio pipewire sndio vulkan wayland x11"
|
||||
build_options_default="gles opengl pulseaudio sndio vulkan wayland x11"
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
arm*)
|
||||
|
@ -27,6 +27,11 @@ case "$XBPS_TARGET_MACHINE" in
|
|||
;;
|
||||
esac
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
ppcle*) ;;
|
||||
*) build_options_default+=" pipewire";;
|
||||
esac
|
||||
|
||||
# SDL_cpuinfo includes altivec.h, which breaks C++ programs with vector keyword
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
ppc*) configure_args+=" --disable-altivec";;
|
||||
|
|
Loading…
Reference in a new issue