Provide a replacement for FNM_CASEFOLD. Reported by Jerry Heyman <heymanj@acm.org>
Showing
1 changed file
with
6 additions
and
0 deletions
... | @@ -28,6 +28,12 @@ | ... | @@ -28,6 +28,12 @@ |
28 | #include <sys/wait.h> | 28 | #include <sys/wait.h> |
29 | #include <ctype.h> | 29 | #include <ctype.h> |
30 | 30 | ||
31 | /* FNM_CASEFOLD is a GNU extension. Provide a replacement for systems | ||
32 | lacking it. */ | ||
33 | #ifndef FNM_CASEFOLD | ||
34 | # define FNM_CASEFOLD 0 | ||
35 | #endif | ||
36 | |||
31 | /* Default mailcap path, the $HOME/.mailcap: entry is prepended to it */ | 37 | /* Default mailcap path, the $HOME/.mailcap: entry is prepended to it */ |
32 | #define DEFAULT_MAILCAP \ | 38 | #define DEFAULT_MAILCAP \ |
33 | "/usr/local/etc/mailcap:"\ | 39 | "/usr/local/etc/mailcap:"\ | ... | ... |
-
Please register or sign in to post a comment