906deaf94a
- some of the drivers now export client library functions to the programmer via the dbi_driver_specific_function() interface - if necessary, the drivers now support libdbi instances - a segfault in the oracle driver caused by INSERT statements was fixed - the pgsql driver now supports features specific to PostgreSQL 9 and later - drivers now support transactions and savepoints if the underlying database engines do - additional libdbi hint about position in a result set allows tremendous speedup of sequential reads from MySQL result sets - various memory leaks were plugged - database specific test scripts allow tests without affecting existing database clusters - completely rewritten test kit increases coverage and improves error reporting
20 lines
567 B
Makefile
20 lines
567 B
Makefile
# $NetBSD: Makefile,v 1.3 2016/08/21 19:16:58 fhajny Exp $
|
|
#
|
|
|
|
.include "../../databases/libdbi-driver-sqlite3/Makefile_drivers"
|
|
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
DRIVER= sqlite
|
|
|
|
COMMENT= SQLite driver for libdbi, a database abstraction
|
|
|
|
CONFLICTS= libdbi-sqlite-[0-9]*
|
|
|
|
CONFIGURE_ARGS+= --with-sqlite
|
|
CONFIGURE_ARGS+= --with-sqlite-incdir=${BUILDLINK_PREFIX.sqlite}/include
|
|
CONFIGURE_ARGS+= --with-sqlite-libdir=${BUILDLINK_PREFIX.sqlite}/lib
|
|
|
|
.include "../../databases/libdbi/buildlink3.mk"
|
|
.include "../../databases/sqlite/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|