summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-01-22 01:31:54 +0000
committerfoobar <sniper@php.net>2005-01-22 01:31:54 +0000
commitf8a540d105df95d70a7f1a286b501315cd13b134 (patch)
treeff785e2701cc49538fc811e71658554c99490bf7
parentecb9f8668db5cc05734aa77b406028ca38ae2284 (diff)
downloadphp-git-f8a540d105df95d70a7f1a286b501315cd13b134.tar.gz
- Typofix + removed unnecessary unsets caused by it
-rw-r--r--acinclude.m42
-rw-r--r--ext/dba/config.m41
-rw-r--r--ext/mcrypt/config.m42
3 files changed, 1 insertions, 4 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 1ad488cd86..531f401ef9 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -1573,7 +1573,7 @@ AC_DEFUN([PHP_CHECK_LIBRARY], [
],[
LDFLAGS=$save_old_LDFLAGS
ext_shared=$save_ext_shared
- unset ac_cv_func_$1
+ unset ac_cv_lib_$1[]_$2
$4
])dnl
])
diff --git a/ext/dba/config.m4 b/ext/dba/config.m4
index 7f3c359a8a..103e2e1bb0 100644
--- a/ext/dba/config.m4
+++ b/ext/dba/config.m4
@@ -116,7 +116,6 @@ AC_ARG_WITH(gdbm,
done
if test -n "$THIS_INCLUDE"; then
- unset ac_cv_lib_gdbm_gdbm_open
PHP_CHECK_LIBRARY(gdbm, gdbm_open, [
AC_DEFINE_UNQUOTED(GDBM_INCLUDE_FILE, "$THIS_INCLUDE", [ ])
AC_DEFINE(DBA_GDBM, 1, [ ])
diff --git a/ext/mcrypt/config.m4 b/ext/mcrypt/config.m4
index 0e162c5997..c93e040bca 100644
--- a/ext/mcrypt/config.m4
+++ b/ext/mcrypt/config.m4
@@ -39,8 +39,6 @@ if test "$PHP_MCRYPT" != "no"; then
PHP_ADD_LIBRARY(ltdl,, MCRYPT_SHARED_LIBADD)
AC_DEFINE(HAVE_LIBMCRYPT,1,[ ])
],[
- unset found
- unset ac_cv_lib_mcrypt_mcrypt_module_open
PHP_CHECK_LIBRARY(mcrypt, mcrypt_module_open,
[
AC_DEFINE(HAVE_LIBMCRYPT,1,[ ])