diff options
author | foobar <sniper@php.net> | 2005-07-13 14:34:46 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-07-13 14:34:46 +0000 |
commit | bc9bc3972c5f61f606cc2b22a5a13fec093201fb (patch) | |
tree | 25b93b9faef71004054cafe18aee4ff11664f17c | |
parent | df44615339c533aad7d22717fa98c2e21bf7532b (diff) | |
download | php-git-bc9bc3972c5f61f606cc2b22a5a13fec093201fb.tar.gz |
typofix
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 9b499de4db..f285350ec0 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2482,8 +2482,8 @@ AC_DEFUN([PHP_REGEX],[ AC_TRY_COMPILE([#include <regex.h>], [struct 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_re_magic" = "yes"; then - AC_DEFINE([HAVE_REGEX_RE_MAGIC], [ ], 1) + if test "$ac_cv_regex_t_re_magic" = "yes"; then + AC_DEFINE([HAVE_REGEX_T_RE_MAGIC], [ ], 1) fi fi AC_MSG_CHECKING([which regex library to use]) |