summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-05-21 17:33:58 +0000
committerWez Furlong <wez@php.net>2004-05-21 17:33:58 +0000
commit40ab777dc88c79f270156f37e144bb3a52e3e41f (patch)
tree06f1b7b3d99c90ff25100d91574693a816ee4062
parent25049d6cf81dfd45ca1d4be3b6bb9abc0641fee3 (diff)
downloadphp-git-40ab777dc88c79f270156f37e144bb3a52e3e41f.tar.gz
Update package/module
-rwxr-xr-xext/pdo_oci/package.xml16
-rwxr-xr-xext/pdo_oci/pdo_oci.c2
2 files changed, 11 insertions, 7 deletions
diff --git a/ext/pdo_oci/package.xml b/ext/pdo_oci/package.xml
index 2accf07e28..df6f3b9e02 100755
--- a/ext/pdo_oci/package.xml
+++ b/ext/pdo_oci/package.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE package SYSTEM "../pear/package.dtd">
<package version="1.0">
- <name>pdo_oci</name>
+ <name>PDO_OCI</name>
<summary>Oracle Call Interface driver for PDO</summary>
<maintainers>
<maintainer>
@@ -17,11 +17,15 @@
<license>PHP</license>
<release>
<state>alpha</state>
- <version>0.1dev</version>
- <date>2004-05-18</date>
+ <version>0.1</version>
+ <date>2004-05-21</date>
<notes>
- Still much to be done.
+ You need to install the PDO core module before you can make use of this one.
+ You also require Oracle OCI 8 or higher client libraries installed on the machine where you intend to build and/or use it.
+
+ If you are running on windows, you can download the binary from here:
+ http://snaps.php.net/win32/PECL_5_0/php_pdo_oci.dll
</notes>
<filelist>
@@ -36,8 +40,8 @@
<file role="doc" name="CREDITS"/>
</filelist>
<deps>
- <dep type="php" rel="ge" version="5.0.0"/>
- <dep type="ext" rel="ge" version="0.1-dev"/>
+ <dep type="php" rel="ge" version="5.0.0RC3dev"/>
+ <dep type="ext" rel="ge" name="pdo" version="0.1"/>
</deps>
</release>
</package>
diff --git a/ext/pdo_oci/pdo_oci.c b/ext/pdo_oci/pdo_oci.c
index 154faa77da..5712f8634d 100755
--- a/ext/pdo_oci/pdo_oci.c
+++ b/ext/pdo_oci/pdo_oci.c
@@ -39,7 +39,7 @@ function_entry pdo_oci_functions[] = {
/* {{{ pdo_oci_module_entry */
zend_module_entry pdo_oci_module_entry = {
STANDARD_MODULE_HEADER,
- "pdo_oci",
+ "PDO_OCI",
pdo_oci_functions,
PHP_MINIT(pdo_oci),
PHP_MSHUTDOWN(pdo_oci),