parent
bc0790186d
commit
f7270c7e02
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'SDL2'
|
||||
pkgname=SDL2
|
||||
version=2.28.2
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=cmake
|
||||
configure_args="-DSDL_ALSA=ON -DSDL_ESD=OFF -DSDL_RPATH=OFF
|
||||
-DSDL_CLOCK_GETTIME=ON -DSDL_PULSEAUDIO_SHARED=OFF
|
||||
|
@ -32,9 +32,11 @@ case "$XBPS_TARGET_MACHINE" in
|
|||
*) build_options_default+=" pipewire";;
|
||||
esac
|
||||
|
||||
# SDL_cpuinfo includes altivec.h, which breaks C++ programs with vector keyword
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
# SDL_cpuinfo includes altivec.h, which breaks C++ programs with vector keyword
|
||||
ppc*) configure_args+=" -DSDL_ALTIVEC=OFF";;
|
||||
# SDL detects SSE3 on i686, which is above our support target
|
||||
i686*) configure_args+=" -DSDL_SSE3=OFF";;
|
||||
*) ;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in New Issue