summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-08-11 21:04:36 +0000
committerMarcus Boerger <helly@php.net>2004-08-11 21:04:36 +0000
commit3bca709fbcd1df2a1666b726e20bfe274f1b45d3 (patch)
tree28e6c6c3c09ff150a866949ba1aa186c41a2b33c
parent364c2fe5a248804fc53241ab8e0be2efbbc050b3 (diff)
downloadphp-git-3bca709fbcd1df2a1666b726e20bfe274f1b45d3.tar.gz
Add missing module deps
-rwxr-xr-xext/pdo_mysql/config.m41
-rw-r--r--ext/pdo_pgsql/config.m41
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/pdo_mysql/config.m4 b/ext/pdo_mysql/config.m4
index 5d35fea380..a2864d081c 100755
--- a/ext/pdo_mysql/config.m4
+++ b/ext/pdo_mysql/config.m4
@@ -60,6 +60,7 @@ Note that the MySQL client library is not bundled anymore.])
fi
PHP_NEW_EXTENSION(pdo_mysql, pdo_mysql.c mysql_driver.c mysql_statement.c, $ext_shared,,-I$pdo_inc_path)
+ PHP_ADD_EXTENSION_DEP(pdo_mysql, pdo)
PDO_MYSQL_MODULE_TYPE=external
PDO_MYSQL_INCLUDE=-I$MYSQL_INC_DIR
diff --git a/ext/pdo_pgsql/config.m4 b/ext/pdo_pgsql/config.m4
index 66b4949bea..2ead970e9d 100644
--- a/ext/pdo_pgsql/config.m4
+++ b/ext/pdo_pgsql/config.m4
@@ -98,4 +98,5 @@ dnl find PDO sources
fi
PHP_NEW_EXTENSION(pdo_pgsql, pdo_pgsql.c pgsql_driver.c pgsql_statement.c, $ext_shared,,-I$pdo_inc_path)
+ PHP_ADD_EXTENSION_DEP(pdo_pgsql, pdo)
fi