summaryrefslogtreecommitdiff
path: root/databases/pear-MDB2_Driver_mysql/Makefile
diff options
context:
space:
mode:
authortaca <taca>2013-03-16 03:33:45 +0000
committertaca <taca>2013-03-16 03:33:45 +0000
commit6a50690826e614cef88c0f6dc1f4d484fd227223 (patch)
treec3675a4e622094cc79bfc68f9e6688a685be1e17 /databases/pear-MDB2_Driver_mysql/Makefile
parentcdcd823e5c06bd47569a4612b86c35dbe99b83d6 (diff)
downloadpkgsrc-6a50690826e614cef88c0f6dc1f4d484fd227223.tar.gz
Update pear-MDB2_Driver_mysql to 1.5.0b4 and add LICENSE.
Changelog: - Make varchar_max_length property public, Bug #19582. - Revert 327099 by afz, caused "Notice: Undefined index: charset on line 1003" - PEAR::isError() -> MDB2::isError(), Bug #19491. - PEAR::loadExtension() -> extension_loaded(), Bug #19583. - max value for VARCHAR is 65535 but if used multi-bytes (UTF8) so it is 21844, because UTF8 string takes 3bytes - Fix Bug #19262. Updates conditional stagements to use logical operators to include MDB2_FETCHMODE_OBJECT where appropriate. Was broken in r321197. - Have truncateTable() return MDB2_OK on success, as documented (bug 19201) - Have alterTable() return MDB2_OK on success, as documented (bug 19200) - Have dropIndex() return MDB2_OK on success, as documented (bug 19198) - Have vacuum() return MDB2_OK on success, as documented (bug 19196) - Have createIndex() return MDB2_OK on success, as documented (bug 19195) - Have dropConstraint() return MDB2_OK on success, as documented (bug 19194) - Have dropSequence() return MDB2_OK on success, as documented (bug 19191). - Make setOption('result_wrap_class') actually useful by changing the default value of $result_wrap_class parameters from false to true. - Obtain error information in _doQuery() because standaloneQuery() throws off $this->connection. - FETCHMODE constants are NOT bitwise. - Make $sql_comments public (was before, used in tests, no real harm). - Property visibility - boolean data type - fixed bug #17984: Error is not reported when mysqli_stmt_bind_param() fails [dennylin93] - fixed bug #18057: Result of getDeclaration() can have invalid syntax [hschletz] - request #18068: mapNativeDatatype() returns decimal places also for 'float' mdb2type - fixed bug #18203: Type introspection breaks with associative arrays if names are identical (patch by Peter Bex) - fixed bug #17892: removed debug message [pdt256] - fixed bug #18057: Result of getDeclaration() can have invalid syntax [hschletz] - request #18068: mapNativeDatatype() returns decimal places also for 'float' mdb2type open todo items: - use a trigger to emulate setting default now()
Diffstat (limited to 'databases/pear-MDB2_Driver_mysql/Makefile')
-rw-r--r--databases/pear-MDB2_Driver_mysql/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/databases/pear-MDB2_Driver_mysql/Makefile b/databases/pear-MDB2_Driver_mysql/Makefile
index 2b2c8f95a17..88aade14ac9 100644
--- a/databases/pear-MDB2_Driver_mysql/Makefile
+++ b/databases/pear-MDB2_Driver_mysql/Makefile
@@ -1,11 +1,12 @@
-# $NetBSD: Makefile,v 1.7 2012/10/02 21:25:37 asau Exp $
+# $NetBSD: Makefile,v 1.8 2013/03/16 03:33:45 taca Exp $
-DISTNAME= MDB2_Driver_mysql-1.5.0b3
+DISTNAME= MDB2_Driver_mysql-1.5.0b4
CATEGORIES= databases
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://pear.php.net/package/MDB2_Driver_mysql
COMMENT= Mysql MDB2 driver
+LICENSE= modified-bsd
DEPENDS+= ${PHP_PKG_PREFIX}-mysql-[0-9]*:../../databases/php-mysql
DEPENDS+= ${PHP_PKG_PREFIX}-pear-MDB2>=2.5:../../databases/pear-MDB2