summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-01-26 10:14:31 -0800
committerKhem Raj <raj.khem@gmail.com>2023-01-26 13:10:34 -0800
commit5da09e4b8628ec63168909d512613fd0d56558ce (patch)
treeecf0ed137931fb3b24d7e9e493be940e6238042d /meta-oe
parent7e3a508325df6cbf3ccecdbe8ffeccf56dc923c1 (diff)
downloadmeta-openembedded-5da09e4b8628ec63168909d512613fd0d56558ce.tar.gz
hiredis: Enable SSL/TLS support by default
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-extended/hiredis/hiredis_1.0.2.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/hiredis/hiredis_1.0.2.bb b/meta-oe/recipes-extended/hiredis/hiredis_1.0.2.bb
index 2ff4946883..3a8c9481fc 100644
--- a/meta-oe/recipes-extended/hiredis/hiredis_1.0.2.bb
+++ b/meta-oe/recipes-extended/hiredis/hiredis_1.0.2.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://github.com/redis/hiredis"
3SECTION = "libs" 3SECTION = "libs"
4LICENSE = "BSD-3-Clause" 4LICENSE = "BSD-3-Clause"
5LIC_FILES_CHKSUM = "file://COPYING;md5=d84d659a35c666d23233e54503aaea51" 5LIC_FILES_CHKSUM = "file://COPYING;md5=d84d659a35c666d23233e54503aaea51"
6DEPENDS = "redis" 6DEPENDS = "redis openssl"
7 7
8SRC_URI = "git://github.com/redis/hiredis;protocol=https;branch=master" 8SRC_URI = "git://github.com/redis/hiredis;protocol=https;branch=master"
9SRCREV = "b731283245f3183af527237166261ad0768ba7d4" 9SRCREV = "b731283245f3183af527237166261ad0768ba7d4"
@@ -11,3 +11,7 @@ SRCREV = "b731283245f3183af527237166261ad0768ba7d4"
11S = "${WORKDIR}/git" 11S = "${WORKDIR}/git"
12 12
13inherit cmake 13inherit cmake
14
15EXTRA_OECMAKE += "-DENABLE_SSL=ON"
16
17FILES:${PN}-dev += "${datadir}/hiredis_ssl"