Merge pull request #8477 from dhewg/buildfixes

A couple of build fixes
This commit is contained in:
Rudi Heitbaum 2024-01-05 20:29:57 +11:00 committed by GitHub
commit c1cab83d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -8,7 +8,8 @@ PKG_SHA256="913dc90402b9c72d284ef1f79ffd80d5ef1b160ccad8855549ad49a07de8fd8c"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="http://www.kodi.tv" PKG_SITE="http://www.kodi.tv"
PKG_URL="https://github.com/xbmc/xbmc/archive/${PKG_VERSION}.tar.gz" PKG_URL="https://github.com/xbmc/xbmc/archive/${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain JsonSchemaBuilder:host TexturePacker:host Python3 zlib systemd lzo pcre swig:host libass commons-lang3 commons-text curl fontconfig fribidi groovy tinyxml tinyxml2 libjpeg-turbo freetype libcdio taglib libxml2 libxslt rapidjson sqlite ffmpeg crossguid libdvdnav libfmt lirc libfstrcmp flatbuffers:host flatbuffers libudfread spdlog" PKG_DEPENDS_TARGET="toolchain JsonSchemaBuilder:host TexturePacker:host Python3 zlib systemd lzo pcre swig:host libass curl fontconfig fribidi tinyxml tinyxml2 libjpeg-turbo freetype libcdio taglib libxml2 libxslt rapidjson sqlite ffmpeg crossguid libdvdnav libfmt lirc libfstrcmp flatbuffers:host flatbuffers libudfread spdlog"
PKG_DEPENDS_UNPACK="commons-lang3 commons-text groovy"
PKG_DEPENDS_HOST="toolchain" PKG_DEPENDS_HOST="toolchain"
PKG_LONGDESC="A free and open source cross-platform media player." PKG_LONGDESC="A free and open source cross-platform media player."
PKG_BUILD_FLAGS="+speed" PKG_BUILD_FLAGS="+speed"

View File

@ -10,4 +10,8 @@ PKG_URL="https://github.com/besser82/libxcrypt/releases/download/v${PKG_VERSION}
PKG_DEPENDS_TARGET="glibc" PKG_DEPENDS_TARGET="glibc"
PKG_LONGDESC="Extended crypt library for descrypt, md5crypt, bcrypt, and others" PKG_LONGDESC="Extended crypt library for descrypt, md5crypt, bcrypt, and others"
if [ "${MOLD_SUPPORT}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" mold:host"
fi
PKG_CONFIGURE_OPTS_TARGET="--disable-obsolete-api" PKG_CONFIGURE_OPTS_TARGET="--disable-obsolete-api"