summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2004-06-08 06:54:04 +0000
committerJim Meyering <jim@meyering.net>2004-06-08 06:54:04 +0000
commit58a9bc79b5a6d8ea708320bdd9276f6498c8f72b (patch)
treebeb238abac1e728c1b6f21e987912d963d23642e
parent62d6b980b27e15d7013aa24a0a1b89039ba2fe8e (diff)
downloadcoreutils-58a9bc79b5a6d8ea708320bdd9276f6498c8f72b.tar.xz
.
-rw-r--r--ChangeLog6
-rw-r--r--config.hin3
-rw-r--r--src/Makefile.in2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0340db95f..416190a47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
-2004-06-07 Jim Meyering <jim@meyering.net>
+2004-06-08 Jim Meyering <jim@meyering.net>
* Version 5.3.0.
+ * src/shred.c (direct_mode): Turn it on/off with directio, too.
+
+2004-06-07 Jim Meyering <jim@meyering.net>
+
Enable direct-mode I/O (bypassing the buffer cache), if possible.
Prompted by a suggestion from Kalle Olavi Niemitalo
in http://bugs.debian.org/207035.
diff --git a/config.hin b/config.hin
index f6caf8bed..0c7d81f6c 100644
--- a/config.hin
+++ b/config.hin
@@ -345,6 +345,9 @@
don't. */
#undef HAVE_DECL___SYS_SIGLIST
+/* Define to 1 if you have the `directio' function. */
+#undef HAVE_DIRECTIO
+
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
*/
#undef HAVE_DIRENT_H
diff --git a/src/Makefile.in b/src/Makefile.in
index 8175052d8..3087831dd 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -933,7 +933,7 @@ uninstall-binPROGRAMS:
done
clean-binPROGRAMS:
- -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS)
+ -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
installcheck-binPROGRAMS: $(bin_PROGRAMS)
bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \