diff options
author | Yan <yanxk.fnst@fujitsu.com> | 2023-09-01 09:16:21 +0800 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-09-15 15:05:32 +0000 |
commit | 42e8b62d447f3cdd79b80dc00419a1733fd0c3ae (patch) | |
tree | feeaaad92feb9d54741b861d200622d601eebab7 /meta-agl-wireless-monitor/recipes-component/boa/boa-0.94.13/0001-boa-fix-configure-avoid-run-test-on-cross-platform.patch | |
parent | 18b99f9275cdb2473f52706c0d4d33636e8055c5 (diff) |
agl-wireless-monitor: provide boa and basic dependency chain
1, add new feature 'agl-wireless-monitor' to help
compile the project.
2, provide boa web server for project, it is
fixed and configured, for more information
you can go check the conf patch.
3, provide basic bb file for main program, currently
some of the html files are included.
Bug-AGL: SPEC-4838
Signed-off-by: Yan <yanxk.fnst@fujitsu.com>
Change-Id: Ia870a76be602a9bc10eeed5e91873c2757a56a2a
Diffstat (limited to 'meta-agl-wireless-monitor/recipes-component/boa/boa-0.94.13/0001-boa-fix-configure-avoid-run-test-on-cross-platform.patch')
-rw-r--r-- | meta-agl-wireless-monitor/recipes-component/boa/boa-0.94.13/0001-boa-fix-configure-avoid-run-test-on-cross-platform.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-agl-wireless-monitor/recipes-component/boa/boa-0.94.13/0001-boa-fix-configure-avoid-run-test-on-cross-platform.patch b/meta-agl-wireless-monitor/recipes-component/boa/boa-0.94.13/0001-boa-fix-configure-avoid-run-test-on-cross-platform.patch new file mode 100644 index 00000000..b0afccce --- /dev/null +++ b/meta-agl-wireless-monitor/recipes-component/boa/boa-0.94.13/0001-boa-fix-configure-avoid-run-test-on-cross-platform.patch @@ -0,0 +1,30 @@ +From 88d73d77794cde03f93ed53f21a163f5980696be Mon Sep 17 00:00:00 2023 +From: Yan <yanxk.fnst@fujitsu.com> +Date: Fri, 25 Aug 2023 09:53:43 +0800 +Subject: [PATCH] boa: fix configure avoid run test on cross platform + +during configuration, boa configure would run already +cross compiled test files on host machine, remove exit +is to ignore this run test failure. + +Upstream-Status: Pending +Signed-off-by: Yan <yanxk.fnst@fujitsu.com> +--- + src/configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/configure b/src/configure +index bda829f..7a6a624 100755 +--- a/src/configure ++++ b/src/configure +@@ -1552,7 +1552,7 @@ if eval "test \"`echo '$''{'ac_cv_func_setvbuf_reversed'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 + else + if test "$cross_compiling" = yes; then +- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } ++ { echo "configure: error: can not run test program while cross compiling" 1>&2; } + else + cat > conftest.$ac_ext <<EOF + #line 1559 "configure" +-- +2.25.1 |