mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
Redis 2.2.11 with support for Lua scripting, backported from the scripting branch. Instructions about how to use it are contained in following blog post: http://antirez.com/post/scripting-branch-released.html Connect to build. Add CONFLICTS and bump PORTREVISION for databases/redis.
15 lines
486 B
Text
15 lines
486 B
Text
--- deps/linenoise/Makefile.orig 2010-12-24 09:27:03.000000000 +0300
|
|
+++ deps/linenoise/Makefile 2010-12-24 09:27:47.000000000 +0300
|
|
@@ -1,10 +1,10 @@
|
|
linenoise_example: linenoise.h linenoise.c
|
|
|
|
linenoise_example: linenoise.o example.o
|
|
- $(CC) $(ARCH) -Wall -W -Os -g -o linenoise_example linenoise.o example.o
|
|
+ $(CC) $(CFLAGS) -o linenoise_example linenoise.o example.o
|
|
|
|
.c.o:
|
|
- $(CC) $(ARCH) -c -Wall -W -Os -g $<
|
|
+ $(CC) $(CFLAGS) -c $<
|
|
|
|
clean:
|
|
rm -f linenoise_example *.o
|