diff options
Diffstat (limited to 'ext/pdo/config.m4')
-rwxr-xr-x | ext/pdo/config.m4 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/pdo/config.m4 b/ext/pdo/config.m4 new file mode 100755 index 0000000000..97688d28bf --- /dev/null +++ b/ext/pdo/config.m4 @@ -0,0 +1,9 @@ +dnl $Id$ +dnl config.m4 for extension pdo + +PHP_ARG_ENABLE(pdo, whether to enable PDO support, +[ --enable-pdo Enable PHP Data Objects support]) + +if test "$PHP_PDO" != "no"; then + PHP_NEW_EXTENSION(pdo, pdo.c pdo_dbh.c pdo_stmt.c, $ext_shared) +fi |