diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2012-07-17 18:23:25 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2012-07-17 18:23:25 +0000 |
commit | a8604ad15fa0320012ea3ad2add23ee5a07183ab (patch) | |
tree | ac0a2d4a91e860ead575e27cf3dfcb4aaf7bba47 /databases/redis-devel/files/patch-deps::Makefile | |
parent | Provide an improved version of the "renamed file detection" patch. (diff) |
Readding the removed port redis-devel.
Update to the latest development version 2.6.0-rc5.
Notes
Notes:
svn path=/head/; revision=301021
Diffstat (limited to 'databases/redis-devel/files/patch-deps::Makefile')
-rw-r--r-- | databases/redis-devel/files/patch-deps::Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/databases/redis-devel/files/patch-deps::Makefile b/databases/redis-devel/files/patch-deps::Makefile new file mode 100644 index 000000000000..793a03c9bc61 --- /dev/null +++ b/databases/redis-devel/files/patch-deps::Makefile @@ -0,0 +1,17 @@ +--- deps/Makefile.orig 2012-07-02 04:18:07.000000000 +0400 ++++ deps/Makefile 2012-07-02 04:18:56.000000000 +0400 +@@ -58,12 +58,12 @@ + LUA_CFLAGS= -D__C99FEATURES__=1 + endif + +-LUA_CFLAGS+= -O2 -Wall -DLUA_ANSI $(CFLAGS) ++LUA_CFLAGS+= -Wall -DLUA_ANSI $(CFLAGS) + LUA_LDFLAGS+= $(LDFLAGS) + + 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 CC="$(CC)" CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" + + .PHONY: lua + |