Fix pcsx2 libretro core.
This commit is contained in:
parent
8ca74a8fb3
commit
df41cf1fb0
1 changed files with 4 additions and 1 deletions
|
@ -49,9 +49,12 @@ pre_configure_target() {
|
|||
PKG_CONFIGURE_OPTS_TARGET+=" --enable-opengl"
|
||||
fi
|
||||
|
||||
if [ "${OPENGLES_SUPPORT}" = yes ]; then
|
||||
if [ "${OPENGLES_SUPPORT}" = yes ] && \
|
||||
[ ! "${ARCH}" = "x86_64" ]; then
|
||||
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
||||
PKG_CONFIGURE_OPTS_TARGET+=" --enable-opengles --enable-opengles3 --enable-opengles3_2 --enable-kms --disable-mali_fbdev"
|
||||
else
|
||||
PKG_CONFIGURE_OPTS_TARGET+=" --disable-opengles --disable-opengles3 --disable-opengles3_2 --disable-kms --disable-mali_fbdev"
|
||||
fi
|
||||
|
||||
if [ "${VULKAN_SUPPORT}" = "yes" ]
|
||||
|
|
Loading…
Reference in a new issue