]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/global/dbpatches/README
Import Global v3_4_2 sources.
[FreeBSD/FreeBSD.git] / contrib / global / dbpatches / README
1 Patch for btree(3)
2 ------------------
3
4 Btree(3) core dumps on certain data sets.
5
6 if (your system == FreeBSD 2.2.6R or former)
7         needs this patch.
8 else if (your system == Debian GNU/Linux 1.3.1)
9         needs this patch.
10 else
11         I don't know.
12
13 Please apply patch files in this directory.
14
15 1. patch your btree(3) source code
16
17         % ls
18         patch.1.2       patch.1.3       patch.1.4
19         % set dir=`pwd`                 <- set current directory
20         % cd /usr/src/lib/libc/db       <- your db source code directory
21         % cd btree                      <- btree library
22         % patch < $dir/patch.1.2        <- it must be in this order.
23           .
24           .
25         % patch < $dir/patch.1.3
26           .
27           .
28         % patch < $dir/patch.1.4
29           .
30           .
31
32 2. remake and install your db(3) library.
33 3. remake GLOBAL.
34 4. remake tag files because tag files are already corrupted.
35
36 I derived these patches from 'http://www.sleepycat.com/update/'.
37 Information is found on 'http://www.sleepycat.com/update/patch.185.html'.