diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2025-08-09 11:02:44 +0200 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2025-08-09 11:09:58 +0200 |
commit | 3e5466ca5f66a2378a88d687d08d372619ae32c9 (patch) | |
tree | 2059bba15f97caed607a20dc88971b76033ff7cb /databases/redis80/files/patch-deps_Makefile | |
parent | www/linux-freetube: Update to 0.23.6.b (diff) |
databases/redis80: New port
This is the 8.0.X series of redis
Redis is an open source, advanced key-value store. It is often referred
to as a data structure server since keys can contain strings, hashes,
lists, sets and sorted sets.
You can run atomic operations on these types, like appending to a
string; incrementing the value in a hash; pushing to a list; computing
set intersection, union and difference; or getting the member with
highest ranking in a sorted set.
In order to achieve its outstanding performance, Redis works with an
in-memory dataset. Depending on your use case, you can persist it
either by dumping the dataset to disk every once in a while, or by
appending each command to a log.
Redis also supports trivial-to-setup master-slave replication, with very
fast non-blocking first synchronization, auto-reconnection on net split
and so forth.
WWW: https://redis.io/
Diffstat (limited to 'databases/redis80/files/patch-deps_Makefile')
-rw-r--r-- | databases/redis80/files/patch-deps_Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/databases/redis80/files/patch-deps_Makefile b/databases/redis80/files/patch-deps_Makefile new file mode 100644 index 000000000000..643ebfdf985c --- /dev/null +++ b/databases/redis80/files/patch-deps_Makefile @@ -0,0 +1,21 @@ +--- deps/Makefile.orig 2025-07-06 11:59:42 UTC ++++ deps/Makefile +@@ -91,7 +91,7 @@ else + ifeq ($(LUA_DEBUG),yes) + LUA_CFLAGS+= -O0 -g -DLUA_USE_APICHECK + else +- LUA_CFLAGS+= -O2 ++ LUA_CFLAGS+= + endif + ifeq ($(LUA_COVERAGE),yes) + LUA_CFLAGS += -fprofile-arcs -ftest-coverage +@@ -119,7 +119,7 @@ jemalloc: .make-prerequisites + + jemalloc: .make-prerequisites + @printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR) +- cd jemalloc && ./configure --disable-cxx --with-version=5.3.0-0-g0 --with-lg-quantum=3 --disable-cache-oblivious --with-jemalloc-prefix=je_ CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" $(JEMALLOC_CONFIGURE_OPTS) +- cd jemalloc && $(MAKE) lib/libjemalloc.a ++ cd jemalloc && ./configure --disable-cxx --with-version=5.3.0-0-g0 --with-lg-quantum=3 --disable-cache-oblivious --with-jemalloc-prefix=je_ CFLAGS="$(JEMALLOC_CFLAGS)" CXXFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" $(JEMALLOC_CONFIGURE_OPTS) ++ cd jemalloc && $(MAKE) CFLAGS="$(JEMALLOC_CFLAGS)" CXXFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" lib/libjemalloc.a + + .PHONY: jemalloc |