78f5dd04af
Changes: 1.35 Tue 29 Nov 2011 - Updated to SQLite 3.7.9 (ISHIGAKI) - One small potential break case if you are using FTS4 and ^ 1.34_03 Tue 1 Nov 2011 - Adding an explicit dynamic_config => 1 (ADAMK) - bind_param SQL_INTEGER error now actually dies with RaiseError. (ISHIGAKI) 1.34_02 Fri 21 Oct 2011 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Resolved #67581: bind_param SQL_INTEGER numifies value; Now DBD::SQLite croaks if you explicitly specify datatype (with bind_param) and datatype mismatch happens (ISHIGAKI) - Datatype set in the bind_param(_array) becomes sticky now (as per DBI spec). This potentially affects code depending on current undocumented and broken behavior. (Yuriy Kaminskiy) - Resolved #71311: binding output columns as SQL_BLOB returns nothing (ISHIGAKI) - Bsymbolic flag was not portable enough and was not silently ignored under MacOSX. Needs to check harder to see if the linker supports the option. (ISHIGAKI) - Fixed binding named parameters. (Yuriy Kaminskiy) - Moved check for bind_ph/is_inout so it always error-out. (Yuriy Kaminskiy) - Don't set imp_sth->stmt to NULL on error path (Yuriy Kaminskiy) - Explained an issue of rollback with unfinished statements. (ISHIGAKI) 1.34_01 Thu 22 Sep 2011 - Updated to SQLite 3.7.8 (ISHIGAKI) - Made util/getsqlite.pl work properly for SQLite 3.7.5+ (ISHIGAKI) - Cookbook: don't use globals (Yuriy Kaminskiy) - Resolved #70135 and hopefully other mod_perl/CentOS issues like #63873 and #47983, with a patch by MDOOTSON++ (ISHIGAKI)
25 lines
760 B
Makefile
25 lines
760 B
Makefile
# $NetBSD: Makefile,v 1.29 2012/01/26 15:03:39 rhaen Exp $
|
|
|
|
DISTNAME= DBD-SQLite-1.35
|
|
PKGNAME= p5-${DISTNAME}
|
|
SVR4_PKGNAME= p5dsl
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/DBD-SQLite/
|
|
COMMENT= Perl DBI/DBD driver for sqlite databases
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LANGUAGES= c
|
|
PERL5_PACKLIST= auto/DBD/SQLite/.packlist
|
|
#MAKE_PARAMS+= SQLITE_LOCATION=${PREFIX:Q}
|
|
|
|
BUILDLINK_API_DEPENDS.p5-DBI+= p5-DBI>=1.580
|
|
.include "../../databases/p5-DBI/buildlink3.mk"
|
|
#.include "../../databases/sqlite3/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|