diff options
author | Zhenhua Luo <zhenhua.luo@nxp.com> | 2016-06-30 18:22:29 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-08 09:57:25 +0100 |
commit | ac0e5e2f397fa6f74856c8a9c4563dd65e4044cc (patch) | |
tree | 506b3914a6c5cb55eb5b96a2488d85de5b0c74a6 /meta/recipes-connectivity | |
parent | dc626e3bdc1aeae1f3d79ea78b61a581b5e6ea3e (diff) | |
download | poky-ac0e5e2f397fa6f74856c8a9c4563dd65e4044cc.tar.gz |
socat: remove the hardcoded shifting offset
The hardcoded shifting offset causes the following runtime error:
| socat: xioinitialize.c:41: xioinitialize: Assertion `3 <<
| opt_crdly.arg3 == 00030000' failed.
(From OE-Core rev: 9dab6d1113e9aec9cbfce4c57ae5a85b1a032cbb)
Signed-off-by: Zhenhua Luo <zhenhua.luo@nxp.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/socat/socat_1.7.3.1.bb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/socat/socat_1.7.3.1.bb b/meta/recipes-connectivity/socat/socat_1.7.3.1.bb index 6da9a17b35..4da6d3970b 100644 --- a/meta/recipes-connectivity/socat/socat_1.7.3.1.bb +++ b/meta/recipes-connectivity/socat/socat_1.7.3.1.bb | |||
@@ -25,9 +25,7 @@ inherit autotools | |||
25 | 25 | ||
26 | EXTRA_AUTORECONF += "--exclude=autoheader" | 26 | EXTRA_AUTORECONF += "--exclude=autoheader" |
27 | 27 | ||
28 | EXTRA_OECONF += "ac_cv_have_z_modifier=yes sc_cv_sys_crdly_shift=9 \ | 28 | EXTRA_OECONF += "ac_cv_have_z_modifier=yes \ |
29 | sc_cv_sys_tabdly_shift=11 sc_cv_sys_csize_shift=4 \ | ||
30 | ac_cv_ispeed_offset=13 \ | ||
31 | ac_cv_header_bsd_libutil_h=no \ | 29 | ac_cv_header_bsd_libutil_h=no \ |
32 | " | 30 | " |
33 | 31 | ||