From 6477b0b5d8348820cacc5db1753740e801213c52 Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 30 Sep 2002 23:31:13 +0000 Subject: [PATCH] Use the built in autoconf test for fnmatch. Simply using the AC_CHECK_FUNCS seems to give false positives on beos and reading the comments on other systems as well. --- ext/standard/config.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ext/standard/config.m4 b/ext/standard/config.m4 index c3bf1d24b0..0129204494 100644 --- a/ext/standard/config.m4 +++ b/ext/standard/config.m4 @@ -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) -- 2.40.0