mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 13:59:40 +01:00
Changelog: ========== * Fix -Werror=sign-conversion in lib/alg-yescrypt-platform.c. With commit 894aee75433b4dc8d9724b126da6e79fa5f6814b we introduced some changes to huge page handling, that show this error when building with GCC v12.2.1, and thus need a small fix. (From OE-Core rev: 6918477ad121f9c7335c661433a909e948f66d51) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
325 B
BlitzBasic
19 lines
325 B
BlitzBasic
#
|
|
# This provides libcrypto.so.1 which contains obsolete APIs, needed for uninative in particular
|
|
#
|
|
|
|
require libxcrypt.inc
|
|
|
|
PROVIDES = ""
|
|
AUTO_LIBNAME_PKGS = ""
|
|
EXCLUDE_FROM_WORLD = "1"
|
|
|
|
API = "--enable-obsolete-api"
|
|
|
|
do_install:append () {
|
|
rm -rf ${D}${includedir}
|
|
rm -rf ${D}${libdir}/pkgconfig
|
|
rm -rf ${D}${datadir}
|
|
}
|
|
|