diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2015-01-21 09:21:42 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-01-23 16:45:38 +0100 |
commit | d226500192dcac84e5fdeba6867ee51ceb402c4c (patch) | |
tree | ffb853bbf5d781b3d5a94d3a6a9306307a66c06d /package/redis/redis-002-lua-AR.patch | |
parent | 9a4d760e1b0d3e4ff81f855486668952a20701df (diff) | |
download | buildroot-d226500192dcac84e5fdeba6867ee51ceb402c4c.tar.gz buildroot-d226500192dcac84e5fdeba6867ee51ceb402c4c.zip |
redis: bump to version 2.8.19
Add hash file.
Drop redis-002-lua-AR.patch (upstream).
Rename patches to new naming convention.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/redis/redis-002-lua-AR.patch')
-rw-r--r-- | package/redis/redis-002-lua-AR.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/redis/redis-002-lua-AR.patch b/package/redis/redis-002-lua-AR.patch deleted file mode 100644 index 68ee70c568..0000000000 --- a/package/redis/redis-002-lua-AR.patch +++ /dev/null @@ -1,32 +0,0 @@ - -redis-002-lua-AR.patch: Improve redis Makefiles to handle Lua's unusual -definition of AR. Patch originates from: - - Define AR to help with lua cross-compilation - https://github.com/antirez/redis/pull/997 - Daniel Price, daniel.price@gmail.com - -Signed-off-by: Daniel Price <daniel.price@gmail.com> - -========================================================================= -diff --git a/deps/Makefile b/deps/Makefile -index d58ee56..c9d7116 100644 ---- a/deps/Makefile -+++ b/deps/Makefile -@@ -60,10 +60,15 @@ endif - - LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) - LUA_LDFLAGS+= $(LDFLAGS) -+# lua's Makefile defines AR="ar rcu", which is unusual, and makes it more -+# challenging to cross-compile lua (and redis). These defines make it easier -+# to fit redis into cross-compilation environments, which typically set AR. -+AR = ar -+ARFLAGS = rcu - - lua: .make-prerequisites - @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) -- cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" -+ cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" AR="$(AR) $(ARFLAGS)" - - .PHONY: lua - |