diff options
| -rw-r--r-- | meta-networking/recipes-support/tcpreplay/tcpreplay/0001-configure.ac-do-not-run-conftest-in-case-of-cross-co.patch | 51 | ||||
| -rw-r--r-- | meta-networking/recipes-support/tcpreplay/tcpreplay_4.4.4.bb | 1 |
2 files changed, 52 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/tcpreplay/tcpreplay/0001-configure.ac-do-not-run-conftest-in-case-of-cross-co.patch b/meta-networking/recipes-support/tcpreplay/tcpreplay/0001-configure.ac-do-not-run-conftest-in-case-of-cross-co.patch new file mode 100644 index 0000000000..08cb3b88fa --- /dev/null +++ b/meta-networking/recipes-support/tcpreplay/tcpreplay/0001-configure.ac-do-not-run-conftest-in-case-of-cross-co.patch | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | From 42f7bbc1ce4913fe2c0bc76293c5445d31690f5d Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Chen Qi <Qi.Chen@windriver.com> | ||
| 3 | Date: Thu, 7 Mar 2024 21:02:07 -0800 | ||
| 4 | Subject: [PATCH] configure.ac: do not run conftest in case of cross | ||
| 5 | compilation | ||
| 6 | |||
| 7 | It'll give us nothing but error like below: | ||
| 8 | |||
| 9 | ./conftest: cannot execute binary file: Exec format error | ||
| 10 | ... | ||
| 11 | ./configure: line 23950: test: -eq: unary operator expected | ||
| 12 | |||
| 13 | The version check only has effect on Apple systems. We'd better | ||
| 14 | avoid error like above when cross compilation. | ||
| 15 | |||
| 16 | Also, in case of cross compilation, instead of having the above | ||
| 17 | Exec format error and resulting in unaligned_cv_fail to yes, set | ||
| 18 | it directly to yes. | ||
| 19 | |||
| 20 | Upstream-Status: Submitted [https://github.com/appneta/tcpreplay/pull/849] | ||
| 21 | |||
| 22 | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> | ||
| 23 | --- | ||
| 24 | configure.ac | 4 ++-- | ||
| 25 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 26 | |||
| 27 | diff --git a/configure.ac b/configure.ac | ||
| 28 | index 387219de..15201601 100644 | ||
| 29 | --- a/configure.ac | ||
| 30 | +++ b/configure.ac | ||
| 31 | @@ -928,7 +928,7 @@ cat >conftest.c <<EOF | ||
| 32 | EOF | ||
| 33 | ${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LPCAPLIB \ | ||
| 34 | conftest.c $LIBS >/dev/null 2>&1 | ||
| 35 | -if test -x conftest ; then | ||
| 36 | +if test -x conftest -a "$cross_compiling" != "yes"; then | ||
| 37 | full_libpcap_version=$(LD_LIBRARY_PATH="$LPCAP_LD_LIBRARY_PATH" ./conftest) | ||
| 38 | libpcap_version=$(echo "$full_libpcap_version" | ${CUT} -d' ' -f3) | ||
| 39 | pcap_version_ok=yes | ||
| 40 | @@ -1709,7 +1709,7 @@ case "$host_os" in | ||
| 41 | EOF | ||
| 42 | ${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS \ | ||
| 43 | conftest.c $LIBS >/dev/null 2>&1 | ||
| 44 | - if test ! -x conftest ; then | ||
| 45 | + if test ! -x conftest -o "$cross_compiling" = "yes" ; then | ||
| 46 | dnl failed to compile for some reason | ||
| 47 | unaligned_cv_fail=yes | ||
| 48 | else | ||
| 49 | -- | ||
| 50 | 2.42.0 | ||
| 51 | |||
diff --git a/meta-networking/recipes-support/tcpreplay/tcpreplay_4.4.4.bb b/meta-networking/recipes-support/tcpreplay/tcpreplay_4.4.4.bb index 53f17c9619..26de40a65a 100644 --- a/meta-networking/recipes-support/tcpreplay/tcpreplay_4.4.4.bb +++ b/meta-networking/recipes-support/tcpreplay/tcpreplay_4.4.4.bb | |||
| @@ -10,6 +10,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=10f0474a2f0e5dccfca20f69d6598ad8" | |||
| 10 | SRC_URI = "https://github.com/appneta/${BPN}/releases/download/v${PV}/${BP}.tar.gz \ | 10 | SRC_URI = "https://github.com/appneta/${BPN}/releases/download/v${PV}/${BP}.tar.gz \ |
| 11 | file://0001-libopts.m4-set-POSIX_SHELL-to-bin-sh.patch \ | 11 | file://0001-libopts.m4-set-POSIX_SHELL-to-bin-sh.patch \ |
| 12 | file://0001-configure.ac-unify-search-dirs-for-pcap-and-add-lib3.patch \ | 12 | file://0001-configure.ac-unify-search-dirs-for-pcap-and-add-lib3.patch \ |
| 13 | file://0001-configure.ac-do-not-run-conftest-in-case-of-cross-co.patch \ | ||
| 13 | " | 14 | " |
| 14 | 15 | ||
| 15 | SRC_URI[sha256sum] = "44f18fb6d3470ecaf77a51b901a119dae16da5be4d4140ffbb2785e37ad6d4bf" | 16 | SRC_URI[sha256sum] = "44f18fb6d3470ecaf77a51b901a119dae16da5be4d4140ffbb2785e37ad6d4bf" |
