Memcached 1.5.21 Overview Bugfixes and smaller changes. Thanks to all the external contributors! Fixes Adding missing defaults to the --help output stats: Fix stats delimiter unit tests Allow compilation with ASAN restart: add error handling if mmap fails For text auth token mode, use alternative bcmp implementation memcached-tool: Fix up tabular output for the 'stats' command. linux_priv.c: add termios.h include to fix powerpc(64) builds Update the build documentation in BUILD file Update documentation for --max-item-size Fix build issue due to improper pthread_t comparison Ensure t/whitespace.t test is skipped when outside a memcached git checkout Allocating large chunk of slabs for FreeBSD. New Features configuration option to disable watch commands (-W)
16 lines
645 B
Text
16 lines
645 B
Text
$NetBSD: patch-configure,v 1.6 2020/01/22 18:53:13 adam Exp $
|
|
|
|
Remove -Werror from default flags since different compilers
|
|
have very different warnings.
|
|
|
|
--- configure.orig 2020-01-21 22:09:10.000000000 +0000
|
|
+++ configure
|
|
@@ -7245,7 +7245,7 @@ $as_echo "#define _GNU_SOURCE 1" >>confd
|
|
elif test "$GCC" = "yes"
|
|
then
|
|
GCC_VERSION=`$CC -dumpversion`
|
|
- CFLAGS="$CFLAGS -Wall -Werror -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls"
|
|
+ CFLAGS="$CFLAGS -Wall -pedantic -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls"
|
|
if test "x$enable_asan" = "xyes"; then
|
|
CFLAGS="$CFLAGS -fsanitize=address"
|
|
fi
|