From 05e598dc37256bb66a76b0071b200f97e30da003 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sun, 28 Aug 1994 16:04:56 +0000 Subject: [PATCH] We do have , and it was harmful to pretend that we don't. Several files in uucp/libunix included and defined dirent as direct, but defines direct as dirent. This macro recursion is not allowed by cpp in traditional mode. The 2.0 mkdep uses cpp in traditional mode (another bug) so cpp prints a error message and exits with a nonzero status. The error status leaks out of the pipe (another bug) so mkdep "succeeds". It may even succeed. --- gnu/libexec/uucp/common_sources/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/libexec/uucp/common_sources/config.h b/gnu/libexec/uucp/common_sources/config.h index b7f55c709b9..c9fe3368931 100644 --- a/gnu/libexec/uucp/common_sources/config.h +++ b/gnu/libexec/uucp/common_sources/config.h @@ -26,7 +26,7 @@ #define HAVE_TIME_H 1 /* */ #define HAVE_SYS_WAIT_H 1 /* */ #define HAVE_SYS_IOCTL_H 1 /* */ -#define HAVE_DIRENT_H 0 /* */ +#define HAVE_DIRENT_H 1 /* */ #define HAVE_MEMORY_H 1 /* */ #define HAVE_SYS_PARAM_H 1 /* */ #define HAVE_UTIME_H 1 /* */