diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-01-26 10:14:49 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-01-26 13:10:37 -0800 |
commit | 8d2a06b62ea50cc97f9f50aa367c6553e566edbc (patch) | |
tree | ad829b8b7fdb85489c5a9f1729db45143777e250 | |
parent | 5da09e4b8628ec63168909d512613fd0d56558ce (diff) | |
download | meta-openembedded-8d2a06b62ea50cc97f9f50aa367c6553e566edbc.tar.gz |
redis-plus-plus: Enable SSL/TLS by default
Makes the build consistent and it does not look into native sysroot for ssl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.7.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.7.bb b/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.7.bb index b127025a73..8e906a4483 100644 --- a/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.7.bb +++ b/meta-oe/recipes-extended/redis-plus-plus/redis-plus-plus_1.3.7.bb | |||
@@ -12,7 +12,9 @@ S = "${WORKDIR}/git" | |||
12 | 12 | ||
13 | inherit cmake | 13 | inherit cmake |
14 | 14 | ||
15 | DEPENDS += "hiredis" | 15 | EXTRA_OECMAKE += "-DREDIS_PLUS_PLUS_USE_TLS=ON" |
16 | |||
17 | DEPENDS += "hiredis openssl" | ||
16 | 18 | ||
17 | RDEPENDS:${PN} += "hiredis" | 19 | RDEPENDS:${PN} += "hiredis" |
18 | 20 | ||