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 b9621384e..0336b2927 100644 --- a/findutils/grep.c +++ b/findutils/grep.c | |||
@@ -179,6 +179,14 @@ enum { | |||
179 | #define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L) | 179 | #define PRINT_FILES_WITHOUT_MATCHES (option_mask32 & OPT_L) |
180 | #define NUL_DELIMITED (option_mask32 & OPT_z) | 180 | #define NUL_DELIMITED (option_mask32 & OPT_z) |
181 | 181 | ||
182 | #if ENABLE_PLATFORM_MINGW32 | ||
183 | # define RE_TRANSLATE_TYPE unsigned char* | ||
184 | # undef ENABLE_EXTRA_COMPAT | ||
185 | # define ENABLE_EXTRA_COMPAT 0 | ||
186 | # undef IF_EXTRA_COMPAT | ||
187 | # define IF_EXTRA_COMPAT(x) | ||
188 | #endif | ||
189 | |||
182 | struct globals { | 190 | struct globals { |
183 | int max_matches; | 191 | int max_matches; |
184 | #if !ENABLE_EXTRA_COMPAT | 192 | #if !ENABLE_EXTRA_COMPAT |