summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/Makefile.in2
-rw-r--r--lib/makepath.c6
-rw-r--r--old/fileutils/ChangeLog18
3 files changed, 23 insertions, 3 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 8a4dc8480..3377776ed 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -66,7 +66,7 @@ realclean: distclean
dist:
for file in $(DISTFILES); do \
ln $$file ../`cat ../.fname`/lib \
- || cp $$file ../`cat ../.fname`/lib; \
+ || cp -p $$file ../`cat ../.fname`/lib; \
done
libfu.a: $(OBJECTS)
diff --git a/lib/makepath.c b/lib/makepath.c
index 123d6abea..e61579021 100644
--- a/lib/makepath.c
+++ b/lib/makepath.c
@@ -46,9 +46,11 @@ char *alloca ();
#include <stdlib.h>
#endif
-#if defined (STDC_HEADERS) || defined (HAVE_ERRNO_H)
+#ifdef HAVE_ERRNO_H
#include <errno.h>
-#else
+#endif
+
+#ifndef STDC_HEADERS
extern int errno;
#endif
diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog
index 18ca010d7..210d5e160 100644
--- a/old/fileutils/ChangeLog
+++ b/old/fileutils/ChangeLog
@@ -1,3 +1,21 @@
+Wed May 12 20:48:55 1993 Jim Meyering (meyering@comco.com)
+
+ * configure.in: Add check for the -ldgc library that is required
+ for getmntent on m88k DGUX-5.4 systems.
+
+Sat May 8 11:31:14 1993 Jim Meyering (meyering@comco.com)
+
+ * lib/Makefile.in (dist): Use `cp -p' instead of just `cp'
+ if linking fails.
+
+Thu May 6 22:45:25 1993 Jim Meyering (meyering@comco.com)
+
+ * makepath.c: Use explicit dcl of errno only if !STDC_HEADERS.
+ Some systems have <errno.h> but don't declare errno.
+ From Kaveh R. Ghazi <ghazi@caip.rutgers.edu>.
+
+ * getdate.y: Test TIME_WITH_SYS_TIME, not TIME_AND_SYS_TIME.
+
Wed May 5 00:21:12 1993 Jim Meyering (meyering@comco.com)
* configure.in: Add AC_TIME_WITH_SYS_TIME.