diff options
author | Alexander Vickberg <wickbergster@gmail.com> | 2020-11-19 11:06:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-24 10:27:45 +0000 |
commit | f5f81aec83e5a4aad710789e20da14f370a530bb (patch) | |
tree | 09dab9885b622c8a473c04b693987c41bd576ca7 /meta/recipes-connectivity | |
parent | 3531871f97e046ac9bab4b551c41b517d8e46a63 (diff) | |
download | poky-f5f81aec83e5a4aad710789e20da14f370a530bb.tar.gz |
socat: make building with OpenSSL support optional
(From OE-Core rev: c9359340ee675f6876e29229000e72c5a17817c8)
Signed-off-by: Alexander Vickberg <wickbergster@gmail.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.4.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/recipes-connectivity/socat/socat_1.7.3.4.bb b/meta/recipes-connectivity/socat/socat_1.7.3.4.bb index 9b0d4071ac..f3f569d262 100644 --- a/meta/recipes-connectivity/socat/socat_1.7.3.4.bb +++ b/meta/recipes-connectivity/socat/socat_1.7.3.4.bb | |||
@@ -5,8 +5,6 @@ HOMEPAGE = "http://www.dest-unreach.org/socat/" | |||
5 | 5 | ||
6 | SECTION = "console/network" | 6 | SECTION = "console/network" |
7 | 7 | ||
8 | DEPENDS = "openssl" | ||
9 | |||
10 | LICENSE = "GPL-2.0-with-OpenSSL-exception" | 8 | LICENSE = "GPL-2.0-with-OpenSSL-exception" |
11 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ |
12 | file://README;beginline=257;endline=287;md5=338c05eadd013872abb1d6e198e10a3f" | 10 | file://README;beginline=257;endline=287;md5=338c05eadd013872abb1d6e198e10a3f" |
@@ -39,10 +37,11 @@ TERMBITS_SHIFTS_powerpc64 = "sc_cv_sys_crdly_shift=12 \ | |||
39 | sc_cv_sys_tabdly_shift=10 \ | 37 | sc_cv_sys_tabdly_shift=10 \ |
40 | sc_cv_sys_csize_shift=8" | 38 | sc_cv_sys_csize_shift=8" |
41 | 39 | ||
42 | PACKAGECONFIG_class-target ??= "tcp-wrappers readline" | 40 | PACKAGECONFIG_class-target ??= "tcp-wrappers readline openssl" |
43 | PACKAGECONFIG ??= "readline" | 41 | PACKAGECONFIG ??= "readline openssl" |
44 | PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers" | 42 | PACKAGECONFIG[tcp-wrappers] = "--enable-libwrap,--disable-libwrap,tcp-wrappers" |
45 | PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline" | 43 | PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline" |
44 | PACKAGECONFIG[openssl] = "--enable-openssl,--disable-openssl,openssl" | ||
46 | 45 | ||
47 | CFLAGS += "-fcommon" | 46 | CFLAGS += "-fcommon" |
48 | 47 | ||