* Drop built-in support for OS/2. If you need to upgrade an OS/2 application to use this or a later version of SQLite, then add an application-defined VFS using the sqlite3_vfs_register() interface. The code removed in this release can serve as a baseline for the application-defined VFS. * Ensure that floating point values are preserved exactly when reconstructing a database from the output of the ".dump" command of the command-line shell. * Added the sqlite3_close_v2() interface. * Updated the command-line shell so that it can be built using SQLITE_OMIT_FLOATING_POINT and SQLITE_OMIT_AUTOINIT. * Improvements to the windows makefiles and build processes. * Enhancements to PRAGMA integrity_check and PRAGMA quick_check so that they can optionally check just a single attached database instead of all attached databases. * Enhancements to WAL mode processing that ensure that at least one valid read-mark is available at all times, so that read-only processes can always read the database. * Performance enhancements in the sorter used by ORDER BY and CREATE INDEX. * Added the SQLITE_DISABLE_FTS4_DEFERRED compile-time option. * Better handling of aggregate queries where the aggregate functions are contained within subqueries. * Enhance the query planner so that it will try to use a covering index on queries that make use of or optimization.
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.54 2012/09/06 20:29:41 adam Exp $
|
|
|
|
DISTNAME= sqlite-autoconf-3071400
|
|
PKGNAME= sqlite3-3.7.14
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \
|
|
http://www.sqlite.org/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.sqlite.org/
|
|
COMMENT= SQL Database Engine in a C Library
|
|
LICENSE= public-domain
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "options.mk"
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= sqlite3.pc.in
|
|
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# In the past, Linux had database corruption issues with pread, so
|
|
# only enable it on safe platforms.
|
|
CFLAGS.NetBSD+= -DUSE_PREAD
|
|
|
|
# Darwin < 9 (Mac OS X < 10.5 "Leopard") doesn't have gethostuuid(2)
|
|
.if !empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*)
|
|
CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0
|
|
.endif
|
|
|
|
# This define includes the sqlite3_unlock_notify() API in the build.
|
|
# It is required by Firefox 4.x.
|
|
CFLAGS+= -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
|
|
|
|
# Uses dlopen and friends but doesn't use -ldl on Linux.
|
|
# See http://www.sqlite.org/cvstrac/tktview?tn=3555
|
|
LIBS+= ${BUILDLINK_LDADD.dl}
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|