diff options
author | Ross Burton <ross.burton@intel.com> | 2015-01-09 16:40:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-11 17:40:06 +0000 |
commit | dddb84aae0074c8837cc5d16ac02728fcddfcb29 (patch) | |
tree | 666f0d1e21c49718634879e3f630813571bd80a9 | |
parent | 6c3ccc8ae92753ee123b1676032ef5f12fcd3496 (diff) | |
download | poky-dddb84aae0074c8837cc5d16ac02728fcddfcb29.tar.gz |
socat: forcibly disable use of libbsd
Socat will look for openpty() in BSD headers before Linux headers, so if libbsd
is present at configure time then that will be used. We don't need to depend on
libbsd though, and leaving it floating can cause build errors, so tell configure
that the libbsd header isn't present.
(From OE-Core rev: 7defa2bb5b28ea69f749363a607a114cfa4ba4ed)
(From OE-Core rev: eab55e22c685f9192ed1abd7a559aeb13eab41fd)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-connectivity/socat/socat_1.7.2.4.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/socat/socat_1.7.2.4.bb b/meta/recipes-connectivity/socat/socat_1.7.2.4.bb index efa3b91c16..44d72202ac 100644 --- a/meta/recipes-connectivity/socat/socat_1.7.2.4.bb +++ b/meta/recipes-connectivity/socat/socat_1.7.2.4.bb | |||
@@ -26,6 +26,7 @@ EXTRA_AUTORECONF += "--exclude=autoheader" | |||
26 | EXTRA_OECONF += "ac_cv_have_z_modifier=yes sc_cv_sys_crdly_shift=9 \ | 26 | EXTRA_OECONF += "ac_cv_have_z_modifier=yes sc_cv_sys_crdly_shift=9 \ |
27 | sc_cv_sys_tabdly_shift=11 sc_cv_sys_csize_shift=4 \ | 27 | sc_cv_sys_tabdly_shift=11 sc_cv_sys_csize_shift=4 \ |
28 | ac_cv_ispeed_offset=13 \ | 28 | ac_cv_ispeed_offset=13 \ |
29 | ac_cv_header_bsd_libutil_h=no \ | ||
29 | " | 30 | " |
30 | 31 | ||
31 | PACKAGECONFIG ??= "tcp-wrappers" | 32 | PACKAGECONFIG ??= "tcp-wrappers" |