Index: head/databases/p5-DBD-InterBase/Makefile =================================================================== --- head/databases/p5-DBD-InterBase/Makefile (revision 105109) +++ head/databases/p5-DBD-InterBase/Makefile (revision 105110) @@ -1,38 +1,38 @@ # New ports collection makefile for: DBD::InterBase # Date created: 15 Oct 2001 # Whom: Sergey Skvortsov # # $FreeBSD$ # PORTNAME= DBD-InterBase -PORTVERSION= 0.42 +PORTVERSION= 0.43 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= DBD PKGNAMEPREFIX= p5- MAINTAINER= skv@FreeBSD.org COMMENT= DBI driver for InterBase RDBMS server LIB_DEPENDS= gds:${PORTSDIR}/databases/firebird PERL_CONFIGURE= yes post-patch: @${PERL} -pi -e 's,%%IB_BASE%%,${PREFIX}/firebird,g' \ ${WRKSRC}/Makefile.PL MAN3= Bundle::DBD::InterBase.3 DBD::InterBase.3 DBD::InterBase::FAQ.3 .include .if ${PERL_LEVEL} < 500600 BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI-137 RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI-137 .else BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI .endif .include Property changes on: head/databases/p5-DBD-InterBase/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/databases/p5-DBD-InterBase/distinfo =================================================================== --- head/databases/p5-DBD-InterBase/distinfo (revision 105109) +++ head/databases/p5-DBD-InterBase/distinfo (revision 105110) @@ -1 +1,2 @@ -MD5 (DBD-InterBase-0.42.tar.gz) = ee432836596c0fff151927522295c076 +MD5 (DBD-InterBase-0.43.tar.gz) = 70d0142378ab928d9a75e465426d2437 +SIZE (DBD-InterBase-0.43.tar.gz) = 79589 Property changes on: head/databases/p5-DBD-InterBase/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/databases/p5-DBD-InterBase/files/patch-dbdimp.c =================================================================== --- head/databases/p5-DBD-InterBase/files/patch-dbdimp.c (nonexistent) +++ head/databases/p5-DBD-InterBase/files/patch-dbdimp.c (revision 105110) @@ -0,0 +1,36 @@ +--- dbdimp.c 2004/02/25 04:38:03 1.105 ++++ dbdimp.c 2004/03/03 11:26:48 1.106 +@@ -1,5 +1,5 @@ + /* +- $Id: dbdimp.c,v 1.105 2004/02/25 04:38:03 edpratomo Exp $ ++ $Id: dbdimp.c,v 1.106 2004/03/03 11:26:48 edpratomo Exp $ + + Copyright (c) 1999-2004 Edwin Pratomo + Portions Copyright (c) 2001-2003 Daniel Ritz +@@ -2185,7 +2185,7 @@ + DBI_TRACE(1, (DBILOGFP, "ib_fill_isqlda: SQL_VARYING\n")); + { + char buf[25]; /* long long can have max 20 chars. */ +- char *tmp; ++ char *tmp = NULL; + if (ivar->sqldata == (char *) NULL) + { + if ((ivar->sqldata = (char *)safemalloc( +@@ -2204,7 +2204,7 @@ + tmp = buf; + len = sprintf(tmp, "%ld", SvNV(value)); + } +- else if (SvPOK(value)) { ++ else if (SvPOK(value) || (SvTYPE(value) == SVt_PVMG)) { + len = SvCUR(value); + tmp = SvPV_nolen(value); + } +@@ -2261,7 +2261,7 @@ + tmp = buf; + len = sprintf(tmp, "%ld", SvNV(value)); + } +- else if (SvPOK(value)) { ++ else if (SvPOK(value) || (SvTYPE(value) == SVt_PVMG)) { + len = SvCUR(value); + tmp = SvPV_nolen(value); + } Property changes on: head/databases/p5-DBD-InterBase/files/patch-dbdimp.c ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.4 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property