Update 1.13 to 1.15
Release 1.15 Minor fixes to allow building on Windows. Fixed syntax error at compile time for some compilers Allow database names with special chars in the name. Change to ct_data_info() to flag an error in case the CS_IODESC returned doesn't include a valid text pointer - this happens if the text/image column is nullable and has not been initialized in the database. Release 1.14 Fix bad size handling for unicode data. Remove default charset setting to utf8 (this had been done in 1.11 as part of improved utf8 handling, but has negative side-effects. If unicode handling is needed then set "charset=utf8" as part of the connection string. Enforce the fact that utf8/unicode handling only works with OpenClient 15.x or later.
This commit is contained in:
parent
d7fc727855
commit
6c4007af59
3 changed files with 10 additions and 10 deletions
|
@ -1,8 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.42 2014/10/09 13:44:34 wiz Exp $
|
||||
# $NetBSD: Makefile,v 1.43 2014/12/04 08:18:05 mef Exp $
|
||||
|
||||
DISTNAME= DBD-Sybase-1.13
|
||||
DISTNAME= DBD-Sybase-1.15
|
||||
PKGNAME= p5-${DISTNAME}
|
||||
PKGREVISION= 5
|
||||
CATEGORIES= databases perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.9 2011/09/29 11:07:10 obache Exp $
|
||||
$NetBSD: distinfo,v 1.10 2014/12/04 08:18:05 mef Exp $
|
||||
|
||||
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
|
||||
SHA1 (DBD-Sybase-1.15.tar.gz) = 5d24b692f52f35be44df082658ccf127b316d0dc
|
||||
RMD160 (DBD-Sybase-1.15.tar.gz) = 09f3e9d5ec608f2c52772b527a8d657fa8a2046c
|
||||
Size (DBD-Sybase-1.15.tar.gz) = 199856 bytes
|
||||
SHA1 (patch-ac) = cda652e28806d36394d3aa6109ad4a4143753773
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
--- dbdimp.c.orig 2009-07-07 14:58:51.000000000 +0000
|
||||
+++ dbdimp.c 2009-07-07 14:59:26.000000000 +0000
|
||||
$NetBSD: patch-ac,v 1.3 2014/12/04 08:18:06 mef Exp $
|
||||
|
||||
|
||||
--- dbdimp.c.orig 2011-09-06 17:25:46.000000000 +0000
|
||||
+++ dbdimp.c
|
||||
@@ -818,22 +818,22 @@ void syb_init(dbistate_t *dbistate) {
|
||||
|
|
Loading…
Reference in a new issue