From: hniksic Date: Tue, 4 Nov 2003 16:22:52 +0000 (-0800) Subject: [svn] HAVE_FNMATCH_H is now HAVE_WORKING_FNMATCH_H. X-Git-Tag: v1.13~1485 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=bc768ec88a0d976a08d9062443d7293264151a2e [svn] HAVE_FNMATCH_H is now HAVE_WORKING_FNMATCH_H. --- diff --git a/src/sysdep.h b/src/sysdep.h index 3275ad4c..b888caaf 100644 --- a/src/sysdep.h +++ b/src/sysdep.h @@ -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