summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-extended/redis/redis/hiredis-use-default-CC-if-it-is-set.patch21
-rw-r--r--meta-oe/recipes-extended/redis/redis_6.0.4.bb (renamed from meta-oe/recipes-extended/redis/redis_5.0.9.bb)4
2 files changed, 15 insertions, 10 deletions
diff --git a/meta-oe/recipes-extended/redis/redis/hiredis-use-default-CC-if-it-is-set.patch b/meta-oe/recipes-extended/redis/redis/hiredis-use-default-CC-if-it-is-set.patch
index 421f306de..878cd3697 100644
--- a/meta-oe/recipes-extended/redis/redis/hiredis-use-default-CC-if-it-is-set.patch
+++ b/meta-oe/recipes-extended/redis/redis/hiredis-use-default-CC-if-it-is-set.patch
@@ -11,20 +11,25 @@ Signed-off-by: Venture Research <tech@ventureresearch.com>
11Update to work with 4.0.8 11Update to work with 4.0.8
12Signed-off-by: Alistair Francis <alistair.francis@wdc.com> 12Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
13 13
14Reworked for 6.0.4
15Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
14--- 16---
15 deps/hiredis/Makefile | 2 +- 17 deps/hiredis/Makefile | 2 --
16 1 file changed, 1 insertion(+), 1 deletion(-) 18 1 file changed, 2 deletions(-)
17 19
18diff --git a/deps/hiredis/Makefile b/deps/hiredis/Makefile 20diff --git a/deps/hiredis/Makefile b/deps/hiredis/Makefile
19index 9a4de836..271c06ba 100644 21index 25ac154..569f82b 100644
20--- a/deps/hiredis/Makefile 22--- a/deps/hiredis/Makefile
21+++ b/deps/hiredis/Makefile 23+++ b/deps/hiredis/Makefile
22@@ -36,7 +36,7 @@ endef 24@@ -42,8 +42,6 @@ endef
23 export REDIS_TEST_CONFIG 25 export REDIS_TEST_CONFIG
24 26
25 # Fallback to gcc when $CC is not in $PATH. 27 # Fallback to gcc when $CC is not in $PATH.
26-CC:=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc') 28-CC:=$(shell sh -c 'type $${CC%% *} >/dev/null 2>/dev/null && echo $(CC) || echo gcc')
27+CC?=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc') 29-CXX:=$(shell sh -c 'type $${CXX%% *} >/dev/null 2>/dev/null && echo $(CXX) || echo g++')
28 CXX:=$(shell sh -c 'type $(CXX) >/dev/null 2>/dev/null && echo $(CXX) || echo g++')
29 OPTIMIZATION?=-O3 30 OPTIMIZATION?=-O3
30 WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings 31 WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings -Wno-missing-field-initializers
32 DEBUG_FLAGS?= -g -ggdb
33--
342.21.3
35
diff --git a/meta-oe/recipes-extended/redis/redis_5.0.9.bb b/meta-oe/recipes-extended/redis/redis_6.0.4.bb
index d04293369..ffa28ccfe 100644
--- a/meta-oe/recipes-extended/redis/redis_5.0.9.bb
+++ b/meta-oe/recipes-extended/redis/redis_6.0.4.bb
@@ -17,8 +17,8 @@ SRC_URI = "http://download.redis.io/releases/${BP}.tar.gz \
17 file://GNU_SOURCE.patch \ 17 file://GNU_SOURCE.patch \
18 " 18 "
19 19
20SRC_URI[md5sum] = "c94523c9f4ee662027ddf90575d0e058" 20SRC_URI[md5sum] = "37200b25c282f94da4521bc510d79ced"
21SRC_URI[sha256sum] = "53d0ae164cd33536c3d4b720ae9a128ea6166ebf04ff1add3b85f1242090cb85" 21SRC_URI[sha256sum] = "3337005a1e0c3aa293c87c313467ea8ac11984921fab08807998ba765c9943de"
22 22
23inherit autotools-brokensep update-rc.d systemd useradd 23inherit autotools-brokensep update-rc.d systemd useradd
24 24