diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-01-24 15:31:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-01-24 15:31:31 (GMT) |
commit | 0064026668cd1dc5ffe005532e4ccc23e55c2b35 (patch) | |
tree | fe331d14636ed0b887f3d3b61976d80f74e11bb7 /PCbuild/bsddb_patch.txt | |
parent | bcb0e20091c3e637905d89e527c5ce1cfdd183f8 (diff) | |
download | cpython-0064026668cd1dc5ffe005532e4ccc23e55c2b35.zip cpython-0064026668cd1dc5ffe005532e4ccc23e55c2b35.tar.gz cpython-0064026668cd1dc5ffe005532e4ccc23e55c2b35.tar.bz2 |
Bump the Windows build to use Sleepycat's 4.1.25.NC release (the
latest bsddb release without strong cryptography).
Diffstat (limited to 'PCbuild/bsddb_patch.txt')
-rw-r--r-- | PCbuild/bsddb_patch.txt | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/PCbuild/bsddb_patch.txt b/PCbuild/bsddb_patch.txt deleted file mode 100644 index d4c51bc..0000000 --- a/PCbuild/bsddb_patch.txt +++ /dev/null @@ -1,36 +0,0 @@ -This patch is against Sleepycat's db-4.0.14 release. It's not on the -Sleepycat site. It fixes cases of database corruption Barry (Warsaw) -was seeing, and Barry got it from Sleepycat. - -*** db/db_reclaim.c.orig 2002/04/05 16:16:17 11.22 ---- db/db_reclaim.c 2002/04/10 18:53:13 11.23 -*************** -*** 195,202 **** - dbp->log_fileid, p->pgno, &LSN(meta), - PGNO_BASE_MD, &ldbt, meta->free)) != 0) - goto err; -- - LSN(p) = LSN(meta); - if ((ret = - __db_pg_alloc_log(dbp->dbenv, - param->dbc->txn, &LSN(meta), 0, ---- 195,202 ---- - dbp->log_fileid, p->pgno, &LSN(meta), - PGNO_BASE_MD, &ldbt, meta->free)) != 0) - goto err; - LSN(p) = LSN(meta); -+ - if ((ret = - __db_pg_alloc_log(dbp->dbenv, - param->dbc->txn, &LSN(meta), 0, -*************** -*** 206,211 **** ---- 206,213 ---- - (void)__TLPUT(param->dbc, metalock); - return (ret); - } -+ LSN(p) = LSN(meta); -+ - if ((ret = mpf->put(mpf, - (PAGE *)meta, DB_MPOOL_DIRTY)) != 0) { - (void)__TLPUT(param->dbc, metalock); |