summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/util/db2/obj/ChangeLog5
-rw-r--r--src/util/db2/obj/Makefile.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/db2/obj/ChangeLog b/src/util/db2/obj/ChangeLog
index 740c93adfc..d2c8bb8081 100644
--- a/src/util/db2/obj/ChangeLog
+++ b/src/util/db2/obj/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep 11 18:55:38 1996 Tom Yu <tlyu@mit.edu>
+
+ * Makefile.in (memmove.o): add -DMEMMOVE to compile as memmove
+ (my_memmove) instead of bcopy (!!)
+
Fri Aug 16 12:16:36 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in (TMPDIR): Use . instead of /tmp.
diff --git a/src/util/db2/obj/Makefile.in b/src/util/db2/obj/Makefile.in
index 211cffb5c7..4445e37c62 100644
--- a/src/util/db2/obj/Makefile.in
+++ b/src/util/db2/obj/Makefile.in
@@ -147,7 +147,7 @@ dbtest.o: $(top_srcdir)/test/dbtest.c
$(CC) $(CFLAGS) -c -o dbtest.o $(top_srcdir)/test/dbtest.c
memmove.o: $(top_srcdir)/clib/memmove.c
- $(CC) $(CFLAGS) -Dmemmove=my_memmove -c -o memmove.o $(top_srcdir)/clib/memmove.c
+ $(CC) $(CFLAGS) -Dmemmove=my_memmove -DMEMMOVE -c -o memmove.o $(top_srcdir)/clib/memmove.c
mkstemp.o: $(top_srcdir)/clib/mkstemp.c
$(CC) $(CFLAGS) -Dmkstemp=my_mkstemp -c -o mkstemp.o $(top_srcdir)/clib/mkstemp.c
strerror.o: $(top_srcdir)/clib/strerror.c