1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[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

View File

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