diff options
author | Wez Furlong <wez@php.net> | 2003-12-19 15:04:31 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-12-19 15:04:31 +0000 |
commit | 0c126e1233ee35c92d0f58f20fc4b40478f0b55f (patch) | |
tree | 274de44354175d4c8a0455b3182058c0b15f8c84 /ext/oracle | |
parent | da4a9eea92e0a43895ba10419ac3d1b1a2ed8586 (diff) | |
download | php-git-0c126e1233ee35c92d0f58f20fc4b40478f0b55f.tar.gz |
make these build with new win32 build system.
mcve untested (I don't have those libs/headers)
Diffstat (limited to 'ext/oracle')
-rw-r--r-- | ext/oracle/config.w32 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/oracle/config.w32 b/ext/oracle/config.w32 new file mode 100644 index 0000000000..fe495ff2e4 --- /dev/null +++ b/ext/oracle/config.w32 @@ -0,0 +1,18 @@ +// $Id$ +// vim:ft=javascript + +ARG_WITH("oracle", "ORACLE support", "no"); + +if (PHP_ORACLE != "no") { + + if (CHECK_HEADER_ADD_INCLUDE("winoci.h", "CFLAGS_ORACLE", PHP_PHP_BUILD + "\\oci73\\include;" + PHP_ORACLE) && + CHECK_LIB("ociw32.lib", "oracle", PHP_PHP_BUILD + "\\oci73\\lib;" + PHP_ORACLE)) { + EXTENSION('oracle', 'oracle.c'); + + AC_DEFINE('HAVE_ORACLE', 1); + + } else { + WARNING("oracle not enabled; libraries and headers not found"); + } +} + |