diff options
| -rw-r--r-- | meta/recipes-support/libnl/files/fa7f97f8982544c4fcb403893bae6701230d5165.patch | 48 | ||||
| -rw-r--r-- | meta/recipes-support/libnl/libnl_3.6.0.bb (renamed from meta/recipes-support/libnl/libnl_3.5.0.bb) | 7 |
2 files changed, 53 insertions, 2 deletions
diff --git a/meta/recipes-support/libnl/files/fa7f97f8982544c4fcb403893bae6701230d5165.patch b/meta/recipes-support/libnl/files/fa7f97f8982544c4fcb403893bae6701230d5165.patch new file mode 100644 index 0000000000..02662c939e --- /dev/null +++ b/meta/recipes-support/libnl/files/fa7f97f8982544c4fcb403893bae6701230d5165.patch | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | From fa7f97f8982544c4fcb403893bae6701230d5165 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Thomas Haller <thaller@redhat.com> | ||
| 3 | Date: Fri, 15 Apr 2022 13:29:49 +0200 | ||
| 4 | Subject: [PATCH] build: avoid building check-direct with --disable-static | ||
| 5 | |||
| 6 | "check-direct" needs to statically link with the libraries, because | ||
| 7 | it wants to test internal ABI, which is hidden in the share libraries. | ||
| 8 | When configuring with "--disable-static", static libs are not build | ||
| 9 | and the test tool cannot be build. | ||
| 10 | |||
| 11 | Just skip the test in that case. | ||
| 12 | |||
| 13 | https://github.com/thom311/libnl/issues/306 | ||
| 14 | Upstream-Status: Backport [https://github.com/thom311/libnl/commit/fa7f97f8982544c4fcb403893bae6701230d5165] | ||
| 15 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
| 16 | --- | ||
| 17 | Makefile.am | 2 ++ | ||
| 18 | configure.ac | 2 ++ | ||
| 19 | 2 files changed, 4 insertions(+) | ||
| 20 | |||
| 21 | diff --git a/Makefile.am b/Makefile.am | ||
| 22 | index a6bcf553..2f5e0dfc 100644 | ||
| 23 | --- a/Makefile.am | ||
| 24 | +++ b/Makefile.am | ||
| 25 | @@ -984,8 +984,10 @@ tests_check_all_LDADD = \ | ||
| 26 | $(NULL) | ||
| 27 | |||
| 28 | if WITH_CHECK | ||
| 29 | +if ENABLE_STATIC | ||
| 30 | check_programs += tests/check-direct | ||
| 31 | endif | ||
| 32 | +endif | ||
| 33 | |||
| 34 | tests_check_direct_SOURCES = \ | ||
| 35 | tests/check-direct.c \ | ||
| 36 | diff --git a/configure.ac b/configure.ac | ||
| 37 | index 1f9ad0eb..0fd1cc0f 100644 | ||
| 38 | --- a/configure.ac | ||
| 39 | +++ b/configure.ac | ||
| 40 | @@ -107,6 +107,8 @@ else | ||
| 41 | AC_CHECK_LIB([pthread], [pthread_mutex_lock], [], AC_MSG_ERROR([libpthread is required])) | ||
| 42 | fi | ||
| 43 | |||
| 44 | +AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" != "no"]) | ||
| 45 | + | ||
| 46 | AC_ARG_ENABLE([debug], | ||
| 47 | AS_HELP_STRING([--disable-debug], [Do not include debugging statements]), | ||
| 48 | [enable_debug="$enableval"], [enable_debug="yes"]) | ||
diff --git a/meta/recipes-support/libnl/libnl_3.5.0.bb b/meta/recipes-support/libnl/libnl_3.6.0.bb index 41d7a9aed8..af3aa41040 100644 --- a/meta/recipes-support/libnl/libnl_3.5.0.bb +++ b/meta/recipes-support/libnl/libnl_3.6.0.bb | |||
| @@ -18,10 +18,10 @@ SRC_URI = " \ | |||
| 18 | https://github.com/thom311/${BPN}/releases/download/${BPN}${@d.getVar('PV').replace('.','_')}/${BP}.tar.gz \ | 18 | https://github.com/thom311/${BPN}/releases/download/${BPN}${@d.getVar('PV').replace('.','_')}/${BP}.tar.gz \ |
| 19 | file://enable-serial-tests.patch \ | 19 | file://enable-serial-tests.patch \ |
| 20 | file://run-ptest \ | 20 | file://run-ptest \ |
| 21 | file://fa7f97f8982544c4fcb403893bae6701230d5165.patch \ | ||
| 21 | " | 22 | " |
| 22 | 23 | ||
| 23 | SRC_URI[md5sum] = "74ba57b1b1d6f9f92268aa8141d8e8e4" | 24 | SRC_URI[sha256sum] = "532155fd011e5a805bd67121b87a01c757e2bb24112ac17e69cb86013b970009" |
| 24 | SRC_URI[sha256sum] = "352133ec9545da76f77e70ccb48c9d7e5324d67f6474744647a7ed382b5e05fa" | ||
| 25 | 25 | ||
| 26 | 26 | ||
| 27 | UPSTREAM_CHECK_URI = "https://github.com/thom311/${BPN}/releases" | 27 | UPSTREAM_CHECK_URI = "https://github.com/thom311/${BPN}/releases" |
| @@ -54,6 +54,7 @@ RREPLACES:${PN}-genl = "libnl-genl2" | |||
| 54 | RCONFLICTS:${PN}-genl = "libnl-genl2" | 54 | RCONFLICTS:${PN}-genl = "libnl-genl2" |
| 55 | 55 | ||
| 56 | RDEPENDS:${PN}-ptest += "libcheck" | 56 | RDEPENDS:${PN}-ptest += "libcheck" |
| 57 | RRECOMMENDS:${PN}-ptest += "kernel-module-dummy kernel-module-bonding" | ||
| 57 | DEPENDS += "${@bb.utils.contains('PTEST_ENABLED', '1', 'libcheck', '', d)}" | 58 | DEPENDS += "${@bb.utils.contains('PTEST_ENABLED', '1', 'libcheck', '', d)}" |
| 58 | 59 | ||
| 59 | # make sure the tests don't link against wrong so file | 60 | # make sure the tests don't link against wrong so file |
| @@ -70,6 +71,8 @@ do_install_ptest(){ | |||
| 70 | # upstream are not running these tests in their CI pipeline | 71 | # upstream are not running these tests in their CI pipeline |
| 71 | # issue opened https://github.com/thom311/libnl/issues/270 | 72 | # issue opened https://github.com/thom311/libnl/issues/270 |
| 72 | install -m 0755 tests/.libs/* ${D}${PTEST_PATH}/ | 73 | install -m 0755 tests/.libs/* ${D}${PTEST_PATH}/ |
| 74 | # contains build paths | ||
| 75 | rm ${D}${PTEST_PATH}/*.la | ||
| 73 | } | 76 | } |
| 74 | 77 | ||
| 75 | BBCLASSEXTEND = "native nativesdk" | 78 | BBCLASSEXTEND = "native nativesdk" |
