diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2020-01-14 14:57:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-16 22:33:09 +0000 |
commit | b11fc7795cd1a6d74c9bb50b922d928f4a17722d (patch) | |
tree | 44836010644bdb4c4d69c26e4e9700f0ae7be963 | |
parent | e5c4f3127521607742f7cdf62481b64cf4d3e828 (diff) | |
download | poky-b11fc7795cd1a6d74c9bb50b922d928f4a17722d.tar.gz |
site: Remove sctp related configs
They are preventing autotools from checking netinet/sctp.h existence
successfuly which in turn makes configure.ac files with lines similar to
this to fail, even if DEPENDS="lksctp-tools" and netinet/sctp.h is
clearly available under recipe-sysroot/:
AC_CHECK_HEADERS(netinet/sctp.h,,AC_MSG_ERROR(netinet/sctp.h not found))
This is the case for new libosmo-netif versionsi (meta-telephony branch
laforge/nightly), which expects netinet/sctp.h to be available if default
flag --enable-libsctp is used.
Without this patch, do_configure will fail unless following line is used
in the recipe:
CACHED_CONFIGUREVARS += "${@bb.utils.contains('PACKAGECONFIG', 'libsctp', 'ac_cv_header_netinet_sctp_h=yes', '',d)}"
So removing ac_cv_header_netinet_sctp_h would be enough, but I couldn't
find any good information on why the other 2 variables were set in site
config files, hence no good reason to keep them.
(From OE-Core rev: 6a641e744507c8c17fa3d7273cb2e5b512ca0242)
Signed-off-by: Pau Espin Pedrol <pespin@sysmocom.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/site/arm-common | 3 | ||||
-rw-r--r-- | meta/site/ix86-common | 3 | ||||
-rw-r--r-- | meta/site/nios2-linux | 3 | ||||
-rw-r--r-- | meta/site/powerpc32-linux | 4 | ||||
-rw-r--r-- | meta/site/sh-common | 4 |
5 files changed, 0 insertions, 17 deletions
diff --git a/meta/site/arm-common b/meta/site/arm-common index 198c98c6a7..8c37f3fc24 100644 --- a/meta/site/arm-common +++ b/meta/site/arm-common | |||
@@ -4,9 +4,6 @@ ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_sl | |||
4 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | 4 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} |
5 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | 5 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} |
6 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | 6 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} |
7 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
8 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
9 | ac_cv_sctp=${ac_cv_sctp=no} | ||
10 | 7 | ||
11 | # bash | 8 | # bash |
12 | ac_cv_c_long_double=${ac_cv_c_long_double=yes} | 9 | ac_cv_c_long_double=${ac_cv_c_long_double=yes} |
diff --git a/meta/site/ix86-common b/meta/site/ix86-common index c5e354c073..a2384372db 100644 --- a/meta/site/ix86-common +++ b/meta/site/ix86-common | |||
@@ -27,10 +27,7 @@ ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | |||
27 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | 27 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} |
28 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} | 28 | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes} |
29 | 29 | ||
30 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
31 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
32 | ac_cv_linux_vers=${ac_cv_linux_vers=2} | 30 | ac_cv_linux_vers=${ac_cv_linux_vers=2} |
33 | ac_cv_sctp=${ac_cv_sctp=no} | ||
34 | 31 | ||
35 | ac_cv_path_ESD_CONFIG=no | 32 | ac_cv_path_ESD_CONFIG=no |
36 | lf_cv_sane_realloc=yes | 33 | lf_cv_sane_realloc=yes |
diff --git a/meta/site/nios2-linux b/meta/site/nios2-linux index 67a3fc8a75..8ac198a0cd 100644 --- a/meta/site/nios2-linux +++ b/meta/site/nios2-linux | |||
@@ -2,9 +2,6 @@ ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_sl | |||
2 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} | 2 | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no} |
3 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} | 3 | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no} |
4 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} | 4 | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no} |
5 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
6 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
7 | ac_cv_sctp=${ac_cv_sctp=no} | ||
8 | 5 | ||
9 | # apache | 6 | # apache |
10 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | 7 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} |
diff --git a/meta/site/powerpc32-linux b/meta/site/powerpc32-linux index f37e915cb3..172a06cc46 100644 --- a/meta/site/powerpc32-linux +++ b/meta/site/powerpc32-linux | |||
@@ -39,10 +39,6 @@ cookie_io_functions_use_off64_t=${cookie_io_functions_use_off64_t=yes} | |||
39 | # apache | 39 | # apache |
40 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | 40 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} |
41 | 41 | ||
42 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
43 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
44 | ac_cv_sctp=${ac_cv_sctp=no} | ||
45 | |||
46 | # ssh | 42 | # ssh |
47 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} | 43 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} |
48 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} | 44 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} |
diff --git a/meta/site/sh-common b/meta/site/sh-common index 97c96934d7..6bda1c237c 100644 --- a/meta/site/sh-common +++ b/meta/site/sh-common | |||
@@ -31,10 +31,6 @@ ac_cv_time_r_type=${ac_cv_time_r_type=POSIX} | |||
31 | # apache | 31 | # apache |
32 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} | 32 | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} |
33 | 33 | ||
34 | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} | ||
35 | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} | ||
36 | ac_cv_sctp=${ac_cv_sctp=no} | ||
37 | |||
38 | # ssh | 34 | # ssh |
39 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} | 35 | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes} |
40 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} | 36 | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no} |