summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2015-01-09 16:40:31 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-01-16 23:08:21 +0000
commitb39ebfd9b29a0c92bd5252ca35500d8378ac92d9 (patch)
treeaaf9deb7b5656f4205e6ae27dcf95e279721b1cc
parent5e52a6cf3ef413d1931d7db8a84d29540fc3108e (diff)
downloadpoky-b39ebfd9b29a0c92bd5252ca35500d8378ac92d9.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) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-connectivity/socat/socat_1.7.2.4.bb1
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 f4461de49e..9e43e160e3 100644
--- a/meta/recipes-connectivity/socat/socat_1.7.2.4.bb
+++ b/meta/recipes-connectivity/socat/socat_1.7.2.4.bb
@@ -27,6 +27,7 @@ EXTRA_AUTORECONF += "--exclude=autoheader"
27EXTRA_OECONF += "ac_cv_have_z_modifier=yes sc_cv_sys_crdly_shift=9 \ 27EXTRA_OECONF += "ac_cv_have_z_modifier=yes sc_cv_sys_crdly_shift=9 \
28 sc_cv_sys_tabdly_shift=11 sc_cv_sys_csize_shift=4 \ 28 sc_cv_sys_tabdly_shift=11 sc_cv_sys_csize_shift=4 \
29 ac_cv_ispeed_offset=13 \ 29 ac_cv_ispeed_offset=13 \
30 ac_cv_header_bsd_libutil_h=no \
30" 31"
31 32
32PACKAGECONFIG ??= "tcp-wrappers" 33PACKAGECONFIG ??= "tcp-wrappers"