dreid Mon Sep 30 19:31:14 2002 EDT
Modified files:
/php4/ext/standard config.m4
Log:
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.
Index: php4/ext/standard/config.m4
diff -u php4/ext/standard/config.m4:1.40 php4/ext/standard/config.m4:1.41
--- php4/ext/standard/config.m4:1.40 Thu Sep 19 17:57:24 2002
+++ php4/ext/standard/config.m4 Mon Sep 30 19:31:13 2002
@@ -1,4 +1,4 @@
-dnl $Id: config.m4,v 1.40 2002/09/19 21:57:24 cmv Exp $ -*- sh -*-
+dnl $Id: config.m4,v 1.41 2002/09/30 23:31:13 dreid Exp $ -*- sh -*-
divert(3)dnl
@@ -224,8 +224,9 @@
],[
REGEX_TYPE=php
])
-
-AC_CHECK_FUNCS(fnmatch glob)
+
+AC_FUNC_FNMATCH
+AC_CHECK_FUNCS(glob)
AC_CHECK_FUNCS(strfmon)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php