summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2006-02-28 13:07:19 +0000
committerMarcus Boerger <helly@php.net>2006-02-28 13:07:19 +0000
commit47a1a84ea50333aca6dad82cd48578e092a96716 (patch)
tree826d4fe812ae7efaa18b2accf62832b190044317 /acinclude.m4
parent5ea9499ca4dd576db77e8ae10da7deb034fd18e7 (diff)
downloadphp-git-47a1a84ea50333aca6dad82cd48578e092a96716.tar.gz
- Fix the fix
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index f259a11f45..46f704e50c 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1000,7 +1000,7 @@ AC_DEFUN([PHP_WITH_SHARED],[
dnl
dnl PHP_ADD_EXTENSION_DEP(extname, depends [, depconf])
dnl
-dnl This macro is is scanned by genif.sh when it builds the internal functions
+dnl This macro is scanned by genif.sh when it builds the internal functions
dnl list, so that modules can be init'd in the correct order
dnl $1 = name of extension, $2 = extension upon which it depends
dnl $3 = optional: if true, it's ok for $2 to have not been configured
@@ -1021,7 +1021,7 @@ You either need to build $1 shared or build $2 statically for the
build to be successful.
])
fi
- if test "x$is_it_enabled" = "x" && test "x$3" != "xtrue"; then
+ if test "x$is_it_enabled" = "xno" && test "x$3" != "xtrue"; then
AC_MSG_ERROR([
You've configured extension $1, which depends on extension $2,
but you've either not enabled $2, or have disabled it.