diff options
author | Sascha Schumann <sas@php.net> | 2000-12-20 17:21:37 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-12-20 17:21:37 +0000 |
commit | 7f96af83b222dd3b09283250924037ae5d99bd51 (patch) | |
tree | 396d5c982cb3040652cd614aba41b5c478bf79da /ext | |
parent | 060e647e5e420dbb9654314d4d1e3f503acce28a (diff) | |
download | php-git-7f96af83b222dd3b09283250924037ae5d99bd51.tar.gz |
Stop automatically passing vars to AC_SUBST through PHP_SUBST.
There are some variables which are needed for Makefiles and files
created by AC_OUTPUT; we use PHP_SUBST_OLD for those now.
genif.sh was moved to an appropiate place.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/oci8/config.m4 | 2 | ||||
-rw-r--r-- | ext/odbc/config.m4 | 2 | ||||
-rw-r--r-- | ext/oracle/config.m4 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/oci8/config.m4 b/ext/oci8/config.m4 index 820a733ae3..b9c79df155 100644 --- a/ext/oci8/config.m4 +++ b/ext/oci8/config.m4 @@ -80,5 +80,5 @@ if test "$PHP_OCI8" != "no"; then PHP_SUBST(OCI8_SHARED_LIBADD) PHP_SUBST(OCI8_DIR) - PHP_SUBST(OCI8_VERSION) + PHP_SUBST_OLD(OCI8_VERSION) fi diff --git a/ext/odbc/config.m4 b/ext/odbc/config.m4 index 5191b61bfa..36f6890bd1 100644 --- a/ext/odbc/config.m4 +++ b/ext/odbc/config.m4 @@ -470,6 +470,6 @@ if test -n "$ODBC_TYPE"; then PHP_SUBST(ODBC_LIBDIR) PHP_SUBST(ODBC_LIBS) PHP_SUBST(ODBC_LFLAGS) - PHP_SUBST(ODBC_TYPE) + PHP_SUBST_OLD(ODBC_TYPE) PHP_EXTENSION(odbc, $shared) fi diff --git a/ext/oracle/config.m4 b/ext/oracle/config.m4 index 6a251a8c73..7fed23f385 100644 --- a/ext/oracle/config.m4 +++ b/ext/oracle/config.m4 @@ -156,5 +156,5 @@ if test "$PHP_ORACLE" != "no"; then PHP_SUBST(ORACLE_SHARED_LIBADD) PHP_SUBST(ORACLE_DIR) - PHP_SUBST(ORACLE_VERSION) + PHP_SUBST_OLD(ORACLE_VERSION) fi |