* lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 12 Oct 2006 06:43:01 +0000 (06:43 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 12 Oct 2006 06:43:01 +0000 (06:43 +0000)
defined.  Problem reported by Matthew Woehlke.

ChangeLog
lib/mkdir-p.c

index d3bfc74..66a5c5e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
+       defined.  Problem reported by Matthew Woehlke.
+
        * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
        Add support for Tandem NonStop R series.
        (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
index 29dcac1..e6f8255 100644 (file)
 #include "savewd.h"
 #include "stat-macros.h"
 
+#ifndef HAVE_FCHMOD
+# define HAVE_FCHMOD false
+#endif
+
 /* Ensure that the directory DIR exists.
 
    WD is the working directory, as in savewd.c.