summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-07-18 18:39:37 +0000
committerfoobar <sniper@php.net>2005-07-18 18:39:37 +0000
commit8688512c84a3d554662ae64642b4d4cc063a57d0 (patch)
tree14e98dc9e2fe05c7d4f9bdc9e273188afb5c72e3
parent2fb797e32522bdd8777b12aeeff1d84d9edd2aed (diff)
downloadphp-git-8688512c84a3d554662ae64642b4d4cc063a57d0.tar.gz
MFH
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 5cc08e032a..e1dbebf9c9 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1101,7 +1101,7 @@ AC_DEFUN([PHP_REGEX],[
dnl Check if field re_magic exists in struct regex_t
AC_CACHE_CHECK([whether field re_magic exists in struct regex_t], ac_cv_regex_t_re_magic, [
AC_TRY_COMPILE([#include <sys/types.h>
-#include <regex.h>], [struct regex_t rt; rt.re_magic;],
+#include <regex.h>], [regex_t rt; rt.re_magic;],
[ac_cv_regex_t_re_magic=yes], [ac_cv_regex_t_re_magic=no])
])
if test "$ac_cv_regex_t_re_magic" = "yes"; then