mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
mpv: jack/sdl/sdl2 require 64-bit sync intrinsics
Fixes: http://autobuild.buildroot.net/results/578/578beb2f3b34fc83109e79d8db7de7219dd8340e/ http://autobuild.buildroot.net/results/21c/21ce67041792d29082f5bba76299da19dd1856eb/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
0074622162
commit
da433d66af
@ -52,7 +52,8 @@ MPV_CONF_OPTS += --disable-gbm
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
# jack support
|
# jack support
|
||||||
ifeq ($(BR2_PACKAGE_JACK2),y)
|
# It also requires 64-bit sync intrinsics
|
||||||
|
ifeq ($(BR2_TOOLCHAIN_HAS_SYNC_8)$(BR2_PACKAGE_JACK2),yy)
|
||||||
MPV_CONF_OPTS += --enable-jack
|
MPV_CONF_OPTS += --enable-jack
|
||||||
MPV_DEPENDENCIES += jack2
|
MPV_DEPENDENCIES += jack2
|
||||||
else
|
else
|
||||||
@ -166,10 +167,11 @@ endif
|
|||||||
|
|
||||||
# SDL support
|
# SDL support
|
||||||
# Both can't be used at the same time, prefer newer API
|
# Both can't be used at the same time, prefer newer API
|
||||||
ifeq ($(BR2_PACKAGE_SDL2),y)
|
# It also requires 64-bit sync intrinsics
|
||||||
|
ifeq ($(BR2_TOOLCHAIN_HAS_SYNC_8)$(BR2_PACKAGE_SDL2),yy)
|
||||||
MPV_CONF_OPTS += --enable-sdl2 --disable-sdl1
|
MPV_CONF_OPTS += --enable-sdl2 --disable-sdl1
|
||||||
MPV_DEPENDENCIES += sdl2
|
MPV_DEPENDENCIES += sdl2
|
||||||
else ifeq ($(BR2_PACKAGE_SDL),y)
|
else ifeq ($(BR2_TOOLCHAIN_HAS_SYNC_8)$(BR2_PACKAGE_SDL),yy)
|
||||||
MPV_CONF_OPTS += --enable-sdl1 --disable-sdl2
|
MPV_CONF_OPTS += --enable-sdl1 --disable-sdl2
|
||||||
MPV_DEPENDENCIES += sdl
|
MPV_DEPENDENCIES += sdl
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user