summaryrefslogtreecommitdiff
path: root/databases/redis-scripting/files/patch-deps::linenoise::Makefile
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2011-07-22 10:32:41 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2011-07-22 10:32:41 +0000
commit80f1925c9128d796fabd558ce39b4567275e23bc (patch)
tree7087ee08ccb35b8b30002a7d4705222aeab113d0 /databases/redis-scripting/files/patch-deps::linenoise::Makefile
parentAdd one more third-party module nginx-gridfs 0.8 - module to serve content (diff)
Add redis-scripting, version 2.2.111, an experimental version of
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.
Notes
Notes: svn path=/head/; revision=278151
Diffstat (limited to 'databases/redis-scripting/files/patch-deps::linenoise::Makefile')
-rw-r--r--databases/redis-scripting/files/patch-deps::linenoise::Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/databases/redis-scripting/files/patch-deps::linenoise::Makefile b/databases/redis-scripting/files/patch-deps::linenoise::Makefile
new file mode 100644
index 000000000000..2a79e2e3208c
--- /dev/null
+++ b/databases/redis-scripting/files/patch-deps::linenoise::Makefile
@@ -0,0 +1,15 @@
+--- 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