diff options
author | adam <adam@pkgsrc.org> | 2011-07-08 09:35:39 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-07-08 09:35:39 +0000 |
commit | 0dcbf01a4c3f04abc50b9f4f93d7f76e1f4d4cf1 (patch) | |
tree | c54f944e7d25dbf7a402a433ad385848e677d963 /databases/sqlite3-docs/Makefile | |
parent | 396076a37ab7ed97b0618f2a2d847d6401e6e9ab (diff) | |
download | pkgsrc-0dcbf01a4c3f04abc50b9f4f93d7f76e1f4d4cf1.tar.gz |
Changes 3.7.7.1:
* Fix a bug causing PRAGMA case_sensitive_like statements compiled using
sqlite3_prepare() to fail with an SQLITE_SCHEMA error.
Changes 3.7.7:
* Add support for URI filenames
* Add the sqlite3_vtab_config() interface in support of ON CONFLICT clauses
with virtual tables.
* Add the xSavepoint, xRelease and xRollbackTo methods in virtual tables in
support of SAVEPOINT for virtual tables.
* Update the built-in FTS3/FTS4 and RTREE virtual tables to support ON CONFLICT
clauses and REPLACE.
* Avoid unnecessary reparsing of the database schema.
* Added support for the FTS4 prefix option and the FTS4 order option.
* Allow WAL-mode databases to be opened read-only as long as there is an
existing read/write connection.
* Added support for short filenames.
Diffstat (limited to 'databases/sqlite3-docs/Makefile')
-rw-r--r-- | databases/sqlite3-docs/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/databases/sqlite3-docs/Makefile b/databases/sqlite3-docs/Makefile index 6911c09f9a7..c38f2077f17 100644 --- a/databases/sqlite3-docs/Makefile +++ b/databases/sqlite3-docs/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2011/04/12 19:03:48 adam Exp $ +# $NetBSD: Makefile,v 1.4 2011/07/08 09:35:39 adam Exp $ -DISTNAME= sqlite-doc-3070600 -PKGNAME= sqlite3-docs-3.7.6 +DISTNAME= sqlite-doc-3070701 +PKGNAME= sqlite3-docs-3.7.7.1 CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ http://www.sqlite.org/ @@ -22,16 +22,11 @@ PKG_DESTDIR_SUPPORT= user-destdir USE_LANGUAGES= # none USE_TOOLS+= find xargs pax +NO_CONFIGURE= yes +NO_BUILD= yes DOCDIR= share/doc/sqlite3 INSTALLATION_DIRS+= ${DOCDIR} -post-extract: - find ${WRKSRC} -type f -print | xargs chmod 644 - find ${WRKSRC} -type d -print | xargs chmod 755 - -do-build: - ${TRUE} - do-install: cd ${WRKSRC} && ${PAX} -rw . ${DESTDIR}${PREFIX}/${DOCDIR} |