mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 08:10:31 -04:00
<ChangeLog> UPGRADE URGENCY: moderate if you don't experience any of the fixed problems. * [BUGFIX] Make install now uses cp -f to avoid 'text file busy' errors. * [BUGFIX] redis-check-aof is now large files safe also on 32 bit systems. * [BUGFIX] Issue #327 fixed: maxmemory and replication now work much better. * [BUGFIX] Now HINCRBY can detect overflows too. Fix for issue #330. * [BUGFIX] Fixed compilation with latest clang. * [BUGFIX] Fixed handling of empty sorted sets produced in RDB by very old Redis versions (1.2.x). </ChangeLog>
15 lines
486 B
Text
15 lines
486 B
Text
--- deps/linenoise/Makefile.orig 2012-02-22 17:23:43.000000000 +0400
|
|
+++ deps/linenoise/Makefile 2012-02-24 16:48:55.000000000 +0400
|
|
@@ -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
|