summaryrefslogtreecommitdiff
path: root/ext/pdo_odbc/config.m4
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-05-17 15:43:01 +0000
committerWez Furlong <wez@php.net>2004-05-17 15:43:01 +0000
commitd6c4dee168c0f87d9b3fecf7a62555d8a5cacde3 (patch)
treef91b2a10b301ad56eca2196e576172e574f217e8 /ext/pdo_odbc/config.m4
parent1b1ced539b959b1122abee2f206a3c1bf3970919 (diff)
downloadphp-git-d6c4dee168c0f87d9b3fecf7a62555d8a5cacde3.tar.gz
ODBC (v3 ish) driver for PDO.
Will not build under unix yet.
Diffstat (limited to 'ext/pdo_odbc/config.m4')
-rwxr-xr-xext/pdo_odbc/config.m49
1 files changed, 9 insertions, 0 deletions
diff --git a/ext/pdo_odbc/config.m4 b/ext/pdo_odbc/config.m4
new file mode 100755
index 0000000000..8195e90640
--- /dev/null
+++ b/ext/pdo_odbc/config.m4
@@ -0,0 +1,9 @@
+dnl $Id$
+dnl config.m4 for extension pdo_odbc
+
+PHP_ARG_WITH(pdo_odbc, for pdo_odbc support,
+[ --with-pdo_odbc Include pdo_odbc support])
+
+if test "$PHP_PDO_ODBC" != "no"; then
+ PHP_NEW_EXTENSION(pdo_odbc, pdo_odbc.c odbc_driver.c odbc_stmt.c, $ext_shared)
+fi