summaryrefslogtreecommitdiff
path: root/databases/sqlrelay
diff options
context:
space:
mode:
authorfhajny <fhajny>2014-10-30 11:51:34 +0000
committerfhajny <fhajny>2014-10-30 11:51:34 +0000
commit33286063058945294c4ee013b1a8fbcf86a461bd (patch)
tree8901aaec365acb60f146f4a7a238fb27f01e2400 /databases/sqlrelay
parent2d51ef3a5412591c1b0af3a3ac9c39ee6f7d2e04 (diff)
downloadpkgsrc-33286063058945294c4ee013b1a8fbcf86a461bd.tar.gz
Update sqlrelay to 0.57.
Changes in 0.57: - fixed an overloaded virtual function error in sqlr-status - fixed parsing of "term as type" clauses in queries - fixed 0 vs. None error in python getRowDictionary method - tweaked php and php_pdo modules to build with php 5.6.0 on windows - updated deployment projects for windows, adding perl, php, python and java, and adding x64 support - describe/getColumnList supports synonyms with oracle now - the mysql, firebird and oracle connections return sensible errors when the format of a numeric bind variable is wrong now - fixed a bug that could cause the mysql connection to loop up if alphanumeric bind variable names were used instead of numbers - fixed a bug that could cause the database specified in the mysql connection string to be ignored - fixed a bind-variable translation bug that could cause variables not to be translated when multiple formats are used in the same query and one of them is the correct format - describing oracle tables returns key (PRI,UNI,MUL) info now - added disablekeylookup option to disable getting key information when describing oracle tables - fixed broken --with-system-libtool configure option - mysql-config --libs_r is used in preference to --libs now, solves build error with maria db on ubuntu 14.04.1 - fixed mysql drop-in lib errors with mysql_row_seek and mysql_row_tell
Diffstat (limited to 'databases/sqlrelay')
-rw-r--r--databases/sqlrelay/Makefile.common4
-rw-r--r--databases/sqlrelay/distinfo9
-rw-r--r--databases/sqlrelay/patches/patch-src_api_c++_src_sqlrcursor.cpp17
3 files changed, 6 insertions, 24 deletions
diff --git a/databases/sqlrelay/Makefile.common b/databases/sqlrelay/Makefile.common
index 5be88f39de1..ea3a69b3917 100644
--- a/databases/sqlrelay/Makefile.common
+++ b/databases/sqlrelay/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.4 2014/08/13 22:40:55 joerg Exp $
+# $NetBSD: Makefile.common,v 1.5 2014/10/30 11:51:34 fhajny Exp $
# used by databases/p5-sqlrelay/Makefile
# used by databases/php-sqlrelay/Makefile
# used by databases/py-sqlrelay/Makefile
@@ -10,7 +10,7 @@
# used by databases/sqlrelay-sqlite/Makefile
# used by databases/sqlrelay/Makefile
-DISTNAME= sqlrelay-0.56
+DISTNAME= sqlrelay-0.57
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sqlrelay/}
diff --git a/databases/sqlrelay/distinfo b/databases/sqlrelay/distinfo
index 36bab39010d..9807a7dfdd9 100644
--- a/databases/sqlrelay/distinfo
+++ b/databases/sqlrelay/distinfo
@@ -1,11 +1,10 @@
-$NetBSD: distinfo,v 1.11 2014/07/18 18:16:30 fhajny Exp $
+$NetBSD: distinfo,v 1.12 2014/10/30 11:51:34 fhajny Exp $
-SHA1 (sqlrelay-0.56.tar.gz) = c859745bebe5ec4c0c514117d3fe7fcc2454433c
-RMD160 (sqlrelay-0.56.tar.gz) = abe9d999d12e1c44e657beb873796171f3ea12f8
-Size (sqlrelay-0.56.tar.gz) = 3717761 bytes
+SHA1 (sqlrelay-0.57.tar.gz) = 537733e01beb5374688f2da9642024704bc93580
+RMD160 (sqlrelay-0.57.tar.gz) = 709de60d7be64ab3d98df64a78bad3f110e9562e
+Size (sqlrelay-0.57.tar.gz) = 3774384 bytes
SHA1 (patch-ad) = b822a43854848641feba34a5331082bb95f5d419
SHA1 (patch-configure) = 72175a91d2892d5325ec619f45a5b2f571bcdbf5
SHA1 (patch-etc_Makefile) = 262968ad43d34d53b4fe65514c1351127660e12c
SHA1 (patch-init_rc.sqlrelay.in) = 6d358d9396339ecee8ef3b7054750100433fb271
-SHA1 (patch-src_api_c++_src_sqlrcursor.cpp) = ed1faf27227bc85c006808e9928a42ed9f86cdf2
SHA1 (patch-src_loggers_custom__sc.cpp) = 79e2b0a54b151e76175f549747e3392accd0b4d9
diff --git a/databases/sqlrelay/patches/patch-src_api_c++_src_sqlrcursor.cpp b/databases/sqlrelay/patches/patch-src_api_c++_src_sqlrcursor.cpp
deleted file mode 100644
index 6a020f6bd0a..00000000000
--- a/databases/sqlrelay/patches/patch-src_api_c++_src_sqlrcursor.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-src_api_c++_src_sqlrcursor.cpp,v 1.1 2014/05/27 09:55:04 joerg Exp $
-
---- src/api/c++/src/sqlrcursor.cpp.orig 2014-05-23 16:56:02.000000000 +0000
-+++ src/api/c++/src/sqlrcursor.cpp
-@@ -4223,10 +4223,10 @@ void sqlrcursor::createFieldLengths() {
- // fieldlengths[1] (corresponding to row 4)
- uint64_t rowbuffercount=rowcount-firstrowindex;
- fieldlengths=new uint32_t *[rowbuffercount+1];
-- fieldlengths[rowbuffercount]=(uint32_t)NULL;
-+ fieldlengths[rowbuffercount]=(uint32_t *)NULL;
- for (uint64_t i=0; i<rowbuffercount; i++) {
- fieldlengths[i]=new uint32_t[colcount+1];
-- fieldlengths[i][colcount]=(uint32_t)NULL;
-+ fieldlengths[i][colcount]=0;
- for (uint32_t j=0; j<colcount; j++) {
- fieldlengths[i][j]=getFieldLengthInternal(i,j);
- }