Merge pull request #9957 from smp79/libretro-vecx

libretro-vecx: update to githash 841229 and add an option USE_GLVND
This commit is contained in:
Christian Hewitt 2025-04-13 22:09:38 +04:00 committed by GitHub
commit 79afa72217
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,8 +2,8 @@
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="libretro-vecx" PKG_NAME="libretro-vecx"
PKG_VERSION="a103a212ca8644fcb5d76eac7cdec77223c4fb02" PKG_VERSION="841229a6a81a0461d08af6488f252dcec5266c6a"
PKG_SHA256="55327ad4494b64f6f64319904417e47f353f06ed8930e8d4cce2eee6f30500d7" PKG_SHA256="d564413e9611b16e49e076cadd719587b6712c3cb435eaf90597c2db157546f4"
PKG_LICENSE="GPLv3" PKG_LICENSE="GPLv3"
PKG_SITE="https://github.com/libretro/libretro-vecx" PKG_SITE="https://github.com/libretro/libretro-vecx"
PKG_URL="https://github.com/libretro/libretro-vecx/archive/${PKG_VERSION}.tar.gz" PKG_URL="https://github.com/libretro/libretro-vecx/archive/${PKG_VERSION}.tar.gz"
@ -21,6 +21,11 @@ if [ "${OPENGL_SUPPORT}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" ${OPENGL}" PKG_DEPENDS_TARGET+=" ${OPENGL}"
fi fi
if [ "${OPENGL_SUPPORT}" = "yes" ] &&
[ "${DISPLAYSERVER}" != "x11" ]; then
PKG_MAKE_OPTS_TARGET+=" USE_GLVND=1"
fi
if [ "${OPENGLES_SUPPORT}" = "yes" ]; then if [ "${OPENGLES_SUPPORT}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" ${OPENGLES}" PKG_DEPENDS_TARGET+=" ${OPENGLES}"
fi fi