Alex Riesen <raa.lkml@gmail.com> writes: > On 1/20/06, Junio C Hamano <junkio@cox.net> wrote: >> The recent Cygwin defines DT_UNKNOWN although it does not have d_type >> in struct dirent. Give an option to tell us not to use d_type on such >> platforms. Hopefully this problem will be transient. > > You still have to #undef all the DT_ macros if you have a somewhat old Cygwin > (before Christopher removed the macros). > - Ah, you mean something like this? -- >8 -- diff --git a/cache.h b/cache.h index 8339931..6f13434 100644 --- a/cache.h +++ b/cache.h @@ -13,6 +13,10 @@ #if defined(DT_UNKNOWN) && !NO_D_TYPE_IN_DIRENT #define DTYPE(de) ((de)->d_type) #else +#undef DT_UNKNOWN +#undef DT_DIR +#undef DT_REG +#undef DT_LNK #define DT_UNKNOWN 0 #define DT_DIR 1 #define DT_REG 2 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sat Jan 21 06:14:47 2006
This archive was generated by hypermail 2.1.8 : 2006-01-21 06:14:56 EST