summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-03-17 12:36:52 +0000
committerRoland McGrath <roland@gnu.org>1996-03-17 12:36:52 +0000
commit9b431e31e15b4620c862208c1079fdace62313aa (patch)
treecca13ab8d19b11603196355f137caca29bc851b3 /db
parent5aab07eb5615fa5baec4161579f03c72280b88e2 (diff)
Sun Mar 17 07:19:33 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>cvs/libc-960318
* db/Makefile (CFLAGS-hash_func.c): New variable; pass -Wno-unused. (CFLAGS): Append -Wno-unitialized. * sysdeps/alpha/memchr.S: New file. * sysdeps/alpha/memchr.c: Obsolete file removed. * string/tester.c: Soup up memchr tests.
Diffstat (limited to 'db')
-rw-r--r--db/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/Makefile b/db/Makefile
index e41614af38..48e2570c6c 100644
--- a/db/Makefile
+++ b/db/Makefile
@@ -26,3 +26,10 @@ distribute := compat.h \
include ../Rules
CPPFLAGS += -D__DBINTERFACE_PRIVATE
+
+# This file defines some static functions for alternative hash algorithms
+# that are not actually used.
+CFLAGS-hash_func.c := -Wno-unused
+
+# The db code outsmarts the compiler frequently.
+override CFLAGS += -Wno-uninitialized