diff options
author | obache <obache> | 2011-09-29 11:07:10 +0000 |
---|---|---|
committer | obache <obache> | 2011-09-29 11:07:10 +0000 |
commit | d47997e11b23396485508aa9aa4d6e748f1460b5 (patch) | |
tree | 0c80c12bcc96a53dbef44ec44f414b710b6ee179 /databases/p5-DBD-Sybase | |
parent | bd03639ff796d885fd0efce702af5abf37676352 (diff) | |
download | pkgsrc-d47997e11b23396485508aa9aa4d6e748f1460b5.tar.gz |
Update p5-DBD-Sybase to 1.13, to buildable with perl-5.14.
Release 1.13
Fix for incorrect UTF8 handling when retrieving UNICODE data (Jean-Pierre Rupp).
Release 1.12
Bug/Typo/Compatibility fixes with various versions of OpenClient.
Experimental: Handle in/out parameters (Merijn Broeren)
Release 1.11
Remove reliance on PERL_POLLUTE.
Add better support for utf8 (Dave Rolsky)
Release 1.10
Handle 15.x datatypes correctly.
Add LONGMS date format symbol to handle microseconds for bigdatetime.
Add support for CS_LONGCHAR_TYPE (Mark Aufflick)
Document syb_isdead().
Handle 64bit builds with FreeTDS (Ian Grant/Hans Kristian Rosbach)
Add foreign_key_info & statistics_info (Jim Radford)
Change behavior of large fixed precision numeric types (money, bigint)
to be converted to a string internally and returned as such to the caller
(behavior similar to numeric/decimal). This can be reverted to the old behavior
by defining SYB_NATIVE_NUM.
Diffstat (limited to 'databases/p5-DBD-Sybase')
-rw-r--r-- | databases/p5-DBD-Sybase/Makefile | 5 | ||||
-rw-r--r-- | databases/p5-DBD-Sybase/distinfo | 10 | ||||
-rw-r--r-- | databases/p5-DBD-Sybase/patches/patch-ac | 14 |
3 files changed, 15 insertions, 14 deletions
diff --git a/databases/p5-DBD-Sybase/Makefile b/databases/p5-DBD-Sybase/Makefile index 4042f9c1f43..ccb2d09ca42 100644 --- a/databases/p5-DBD-Sybase/Makefile +++ b/databases/p5-DBD-Sybase/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.33 2011/08/14 08:18:05 obache Exp $ +# $NetBSD: Makefile,v 1.34 2011/09/29 11:07:10 obache Exp $ # -DISTNAME= DBD-Sybase-1.09 +DISTNAME= DBD-Sybase-1.13 PKGNAME= p5-${DISTNAME} -PKGREVISION= 4 SVR4_PKGNAME= p5dsy CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/} diff --git a/databases/p5-DBD-Sybase/distinfo b/databases/p5-DBD-Sybase/distinfo index dfd126568a9..5bdc5bd0bdb 100644 --- a/databases/p5-DBD-Sybase/distinfo +++ b/databases/p5-DBD-Sybase/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2009/07/17 06:46:41 sno Exp $ +$NetBSD: distinfo,v 1.9 2011/09/29 11:07:10 obache Exp $ -SHA1 (DBD-Sybase-1.09.tar.gz) = 23cad59ab7892732175336087093b1e3c2bda09a -RMD160 (DBD-Sybase-1.09.tar.gz) = 6328d65c955956aa4c68dedf5d10aaf882ccc949 -Size (DBD-Sybase-1.09.tar.gz) = 194414 bytes -SHA1 (patch-ac) = 17211c406ce1784da5d637fd0430a960c513704d +SHA1 (DBD-Sybase-1.13.tar.gz) = 4426fc2173ba2650a0df0ef33aaca2ca7329e4a1 +RMD160 (DBD-Sybase-1.13.tar.gz) = 0c24ea6bf7b9931e045bc1f979e6a394a7faa93d +Size (DBD-Sybase-1.13.tar.gz) = 198332 bytes +SHA1 (patch-ac) = 120e01a5283ae83dd4982efdc2fc89911cba2ed7 diff --git a/databases/p5-DBD-Sybase/patches/patch-ac b/databases/p5-DBD-Sybase/patches/patch-ac index a8c335f88a2..d4151933216 100644 --- a/databases/p5-DBD-Sybase/patches/patch-ac +++ b/databases/p5-DBD-Sybase/patches/patch-ac @@ -1,24 +1,26 @@ --- dbdimp.c.orig 2009-07-07 14:58:51.000000000 +0000 +++ dbdimp.c 2009-07-07 14:59:26.000000000 +0000 -@@ -774,22 +774,22 @@ - +--- dbdimp.c.orig 2011-09-06 17:25:46.000000000 +0000 ++++ dbdimp.c +@@ -818,22 +818,22 @@ void syb_init(dbistate_t *dbistate) { + #endif #if defined(CS_VERSION_150) - if(cs_ver == CS_VERSION_150) + if (cs_ver == CS_VERSION_150) - BLK_VERSION = BLK_VERSION_150; + BLK_VERSION = CS_VERSION_150; #endif #if defined(CS_VERSION_125) - if(cs_ver == CS_VERSION_125) + if (cs_ver == CS_VERSION_125) - BLK_VERSION = BLK_VERSION_125; + BLK_VERSION = CS_VERSION_125; #endif #if defined(CS_VERSION_120) - if(cs_ver == CS_VERSION_120) + if (cs_ver == CS_VERSION_120) - BLK_VERSION = BLK_VERSION_120; + BLK_VERSION = CS_VERSION_120; #endif #if defined(CS_VERSION_110) - if(cs_ver == CS_VERSION_110) + if (cs_ver == CS_VERSION_110) - BLK_VERSION = BLK_VERSION_110; + BLK_VERSION = CS_VERSION_110; #endif |