]> granicus.if.org Git - php/commitdiff
Use the built in autoconf test for fnmatch. Simply using the
authorDavid Reid <dreid@php.net>
Mon, 30 Sep 2002 23:31:13 +0000 (23:31 +0000)
committerDavid Reid <dreid@php.net>
Mon, 30 Sep 2002 23:31:13 +0000 (23:31 +0000)
AC_CHECK_FUNCS seems to give false positives on beos and reading
the comments on other systems as well.

ext/standard/config.m4

index c3bf1d24b0e46ad14807ca5645a88d76513408b7..0129204494a147b56a5e0be2e1090f67f2bb9a20 100644 (file)
@@ -224,8 +224,9 @@ AC_ARG_WITH(regex,
 ],[
   REGEX_TYPE=php
 ])
-       
-AC_CHECK_FUNCS(fnmatch glob)
+
+AC_FUNC_FNMATCH        
+AC_CHECK_FUNCS(glob)
 
 AC_CHECK_FUNCS(strfmon)