- MFB Add optional deps for SPL

This commit is contained in:
Marcus Boerger 2005-10-04 07:48:43 +00:00
parent c8aa7f6088
commit 31d9d6c5b5
2 changed files with 2 additions and 0 deletions

View File

@ -51,6 +51,7 @@ for more detail on this issue.
esac
fi
PHP_NEW_EXTENSION(pdo, pdo.c pdo_dbh.c pdo_stmt.c pdo_sql_parser.c pdo_sqlstate.c, $ext_shared)
PHP_ADD_EXTENSION_DEP(pdo, spl, true)
ifdef([PHP_INSTALL_HEADERS],
[

View File

@ -5,5 +5,6 @@ ARG_ENABLE("pdo", "Enable PHP Data Objects support", "no");
if (PHP_PDO != "no") {
EXTENSION('pdo', 'pdo.c pdo_dbh.c pdo_stmt.c pdo_sql_parser.c pdo_sqlstate.c');
ADD_EXTENSION_DEP('pdo', 'spl', true);
}