Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
63307164
...
63307164ff9d6e8780365bd585d203cff8b5d394
authored
2005-05-23 19:34:11 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Provide a replacement for FNM_CASEFOLD. Reported by Jerry Heyman <heymanj@acm.org>
1 parent
39b4dd76
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
lib/mailcap.c
lib/mailcap.c
View file @
6330716
...
...
@@ -28,6 +28,12 @@
#include <sys/wait.h>
#include <ctype.h>
/* FNM_CASEFOLD is a GNU extension. Provide a replacement for systems
lacking it. */
#ifndef FNM_CASEFOLD
# define FNM_CASEFOLD 0
#endif
/* Default mailcap path, the $HOME/.mailcap: entry is prepended to it */
#define DEFAULT_MAILCAP \
"/usr/local/etc/mailcap:"\
...
...
Please
register
or
sign in
to post a comment