mirror of
https://git.yoctoproject.org/poky
synced 2026-03-02 05:19:40 +01:00
Add a recipe which is able to build the obsolete APIs. This is mainly to support uninative which needs to have both the new and obsolete APIs available to support the different host combinations. (From OE-Core rev: ad83f35c012e84dc8d2d27e02a4847568b4f3f35) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
330 B
BlitzBasic
19 lines
330 B
BlitzBasic
#
|
|
# This provides libcrypto.so.1 which contains obsolete APIs, needed for uninative in particular
|
|
#
|
|
|
|
require libxcrypt_${PV}.bb
|
|
|
|
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}
|
|
}
|
|
|