diff options
author | Jochen Neumeister <joneum@FreeBSD.org> | 2017-11-16 20:02:08 +0000 |
---|---|---|
committer | Jochen Neumeister <joneum@FreeBSD.org> | 2017-11-16 20:02:08 +0000 |
commit | fa838d82b7d3ec20c092d4b5bac6e9b6ab99a487 (patch) | |
tree | 9a501213d900a8b927337ccec2ddf7b66cbfed3f /databases/lua-resty-redis/files | |
parent | Follow-up r454266: Sort and remove duplicates for [DE]SELECTED_OPTIONS. (diff) |
New Port: lua-resty-redis - for accessing redis from nginx lua
This Lua library is a Redis client driver for the ngx_lua nginx module:
http://wiki.nginx.org/HttpLuaModule
This Lua library takes advantage of ngx_lua's cosocket API, which ensures 100%
nonblocking behavior.
WWW: https://github.com/openresty/lua-resty-redis
PR: 191531
Submitted by: arcade@b1t.name (maintainer)
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D13121
Notes
Notes:
svn path=/head/; revision=454333
Diffstat (limited to 'databases/lua-resty-redis/files')
-rw-r--r-- | databases/lua-resty-redis/files/patch-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/lua-resty-redis/files/patch-Makefile b/databases/lua-resty-redis/files/patch-Makefile new file mode 100644 index 000000000000..db153d4ee71b --- /dev/null +++ b/databases/lua-resty-redis/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig 2016-11-04 20:57:34 UTC ++++ Makefile +@@ -2,7 +2,7 @@ OPENRESTY_PREFIX=/usr/local/openresty-de + + PREFIX ?= /usr/local + LUA_INCLUDE_DIR ?= $(PREFIX)/include +-LUA_LIB_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION) ++LUA_LIB_DIR ?= $(PREFIX)/share/lua/$(LUA_VER) + INSTALL ?= install + + .PHONY: all test install |