diff options
Diffstat (limited to 'findutils/grep.c')
-rw-r--r-- | findutils/grep.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/findutils/grep.c b/findutils/grep.c index 547e3d576..9f84d529b 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -172,6 +172,14 @@ enum { | |||
172 | #define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L) | 172 | #define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L) |
173 | #define NUL_DELIMITED (option_mask32 & OPT_z) | 173 | #define NUL_DELIMITED (option_mask32 & OPT_z) |
174 | 174 | ||
175 | #if ENABLE_PLATFORM_MINGW32 | ||
176 | # define RE_TRANSLATE_TYPE unsigned char* | ||
177 | # undef ENABLE_EXTRA_COMPAT | ||
178 | # define ENABLE_EXTRA_COMPAT 0 | ||
179 | # undef IF_EXTRA_COMPAT | ||
180 | # define IF_EXTRA_COMPAT(x) | ||
181 | #endif | ||
182 | |||
175 | struct globals { | 183 | struct globals { |
176 | int max_matches; | 184 | int max_matches; |
177 | #if !ENABLE_EXTRA_COMPAT | 185 | #if !ENABLE_EXTRA_COMPAT |