diff options
| -rw-r--r-- | acinclude.m4 | 2 |
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 |
