diff options
author | tsarna <tsarna@pkgsrc.org> | 2003-06-25 19:24:21 +0000 |
---|---|---|
committer | tsarna <tsarna@pkgsrc.org> | 2003-06-25 19:24:21 +0000 |
commit | 55d2128ca38fffcc8a108b0959d0f0d8042c370d (patch) | |
tree | 6c1f8fbd0f68ab3e063d9d258a9e7778adc39ad7 /databases/sqlite/patches/patch-aa | |
parent | 4fb64d470162996bcf3f8080a1760939ca6f0a5f (diff) | |
download | pkgsrc-55d2128ca38fffcc8a108b0959d0f0d8042c370d.tar.gz |
Update sqlite to 2.8.3. Major relevant changes:
2003 June 4 (2.8.3)
- Fix a problem that will corrupt the indices on a table if you
do an INSERT OR REPLACE or an UPDATE OR REPLACE on a table that
contains an INTEGER PRIMARY KEY plus one or more indices.
- Add the ability for INSERT and UPDATE statements to refer to
the "rowid" (or "_rowid_" or "oid") columns.
- Other important bug fixes
2003 May 17 (2.8.2)
- Fix a problem that will corrupt the database file if you drop a
table from the main database that has a TEMP index.
2003 May 16 (2.8.1)
- Reactivated the VACUUM command that reclaims unused disk space
in a database file.
- Added the ATTACH and DETACH commands to allow interacting with
multiple database files at the same time.
- Added support for TEMP triggers and indices.
- Added support for in-memory databases.
- Removed the experimental sqlite_open_aux_file(). Its function
is subsumed in the new ATTACH command.
- The precedence order for ON CONFLICT clauses was changed so
that ON CONFLICT clauses on BEGIN statements have a higher
precedence than ON CONFLICT clauses on constraints.
- Many, many bug fixes and compatibility enhancements.
Diffstat (limited to 'databases/sqlite/patches/patch-aa')
-rw-r--r-- | databases/sqlite/patches/patch-aa | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/databases/sqlite/patches/patch-aa b/databases/sqlite/patches/patch-aa deleted file mode 100644 index da5d6dd43d9..00000000000 --- a/databases/sqlite/patches/patch-aa +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2001/10/20 18:51:37 reinoud Exp $ - ---- ../sqlite/configure.orig Fri Sep 28 03:34:44 2001 -+++ ../sqlite/configure -@@ -13341,7 +13341,7 @@ - rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - if test "$ac_cv_search_readline" = no; then - for ac_lib in readline; do -- LIBS="-l$ac_lib $ac_func_search_save_LIBS" -+ LIBS="-l$ac_lib -ltermcap $ac_func_search_save_LIBS" - cat >conftest.$ac_ext <<_ACEOF - #line 13346 "configure" - #include "confdefs.h" -@@ -13373,7 +13373,7 @@ - ac_status=$? - echo "$as_me:13374: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then -- ac_cv_search_readline="-l$ac_lib" -+ ac_cv_search_readline="${LDFLAGS} -l$ac_lib -ltermcap" - break - else - echo "$as_me: failed program was:" >&5 |