[svn] HAVE_FNMATCH_H is now HAVE_WORKING_FNMATCH_H.

This commit is contained in:
hniksic 2003-11-04 08:22:52 -08:00
parent cf4f603c00
commit bc768ec88a
1 changed files with 2 additions and 2 deletions

View File

@ -224,14 +224,14 @@ void *memcpy ();
Currently those include glibc-based systems and Solaris. One could
add more, but fnmatch is not that large, so it might be better to
play it safe. */
#ifdef HAVE_FNMATCH_H
#ifdef HAVE_WORKING_FNMATCH_H
# if defined __GLIBC__ && __GLIBC__ >= 2
# define SYSTEM_FNMATCH
# endif
# ifdef solaris
# define SYSTEM_FNMATCH
# endif
#endif /* HAVE_FNMATCH_H */
#endif /* HAVE_WORKING_FNMATCH_H */
#ifdef SYSTEM_FNMATCH
# include <fnmatch.h>