summaryrefslogtreecommitdiff
path: root/old/textutils
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-10-23 15:34:12 +0000
committerJim Meyering <jim@meyering.net>1997-10-23 15:34:12 +0000
commit308d4d7b564954ba74e71cd6d386b123a003e2f7 (patch)
tree036927f8783371d09709463de9a67aa07202eec0 /old/textutils
parentfd9508f73e83be9236d0358cef8cda51472f9764 (diff)
downloadcoreutils-308d4d7b564954ba74e71cd6d386b123a003e2f7.tar.xz
.
Diffstat (limited to 'old/textutils')
-rw-r--r--old/textutils/ChangeLog21
1 files changed, 20 insertions, 1 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog
index 6b53f6753..d0c016141 100644
--- a/old/textutils/ChangeLog
+++ b/old/textutils/ChangeLog
@@ -1,7 +1,26 @@
+1997-10-23 Jim Meyering <meyering@na-net.ornl.gov>
+
+ * src/system.h [!HAVE_DECLARATION_FREE]: Declare free.
+ [!HAVE_DECLARATION_MALLOC]: Declare malloc.
+ [!HAVE_DECLARATION_REALLOC]: Declare realloc.
+ [!HAVE_DECLARATION_STPCPY]: Declare stpcpy.
+ [!HAVE_DECLARATION_STRSTR]: Declare strstr.
+ * src/cat.c: Remove stpcpy dcl.
+ * src/csplit.c: Remove malloc and realloc dcls.
+ * src/sort.c: Remove free, malloc, and realloc dcls.
+ * src/tac.c: Remove malloc, and realloc dcls.
+ * src/tr.c: Remove stpcpy dcl.
+ On some systems, strstr and stpcpy are macros, so declaring them
+ unconditionally gets syntax errors.
+ Reported by Mark M._Kettenis" <kettenis@phys.uva.nl>.
+
+ * configure.in: Use jm_CHECK_DECLS.
+ * m4/Makefile.am (EXTRA_DIST): Add decl.m4 and do-decl.m4.
+
1997-10-22 Jim Meyering <meyering@na-net.ornl.gov>
* m4/decl.m4: New file.
- * m4/do-decl.m4: New file.
+ * m4/do-decl.m4: New file. New macro, jm_CHECK_DECLS.
1997-10-16 Paul Eggert <eggert@twinsun.com>