diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-09 02:46:46 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-09 02:46:46 +0800 |
commit | 3a937c78de98e62569c92ba861cb16ff5c2172f8 (patch) | |
tree | 7321e9efe83a65a7d1f26c8a8f9a0130fd76a930 /README | |
parent | 33d12454c2eb97fec0110aaacadcd1f2bafd8b9d (diff) | |
download | gsoc2013-evolution-3a937c78de98e62569c92ba861cb16ff5c2172f8.tar gsoc2013-evolution-3a937c78de98e62569c92ba861cb16ff5c2172f8.tar.gz gsoc2013-evolution-3a937c78de98e62569c92ba861cb16ff5c2172f8.tar.bz2 gsoc2013-evolution-3a937c78de98e62569c92ba861cb16ff5c2172f8.tar.lz gsoc2013-evolution-3a937c78de98e62569c92ba861cb16ff5c2172f8.tar.xz gsoc2013-evolution-3a937c78de98e62569c92ba861cb16ff5c2172f8.tar.zst gsoc2013-evolution-3a937c78de98e62569c92ba861cb16ff5c2172f8.zip |
Add an explanation/warning about why we want Berkeley DB 3.1.17 and
* README: Add an explanation/warning about why we want Berkeley DB
3.1.17 and nothing else.
svn path=/trunk/; revision=16726
Diffstat (limited to 'README')
-rw-r--r-- | README | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -152,6 +152,45 @@ Other non-GNOME Dependencies: db3 is available from http://www.sleepycat.com. Make sure to get 3.1.17, it isn't the latest version. + --- IMPORTANT WARNING --- + + The on-disk format of DB files has been changing between versions + 2, 3 and 4. Also, because of the libdb API, there is no way to + easily handle the different formats from within the application. + For this reason, Evolution has chosen to use one specific version + of the library (version 3) and stick to it, so that users do not + need to convert their addressbook files to use them with + different version of Evolution. + + That's why Evolution REQUIRES libdb 3.1.17, and NO OTHER VERSION. + + If you force the check to accept a version different from 3.1.17, + your binary of Evolution will be using a different format from + the chosen one; this means that it will not be able to read + addressbook databases created by other versions of Evolution + which were compiled in the standard way. Also, we DO NOT + GUARRANTEE that Evolution will work with different versions of + libdb at all, even if it can be trivially made to compile against + them. + + SPECIAL NOTE FOR BINARY PACKAGERS: + + If you are making binary packages for end-users (e.g. if you are + a distribution vendor), please statically link Evolution to + Berkeley DB 3.1.17, as mandated by the configure.in check. DO + NOT patch configure.in to work around the check. Forcing the + check to link to a different version of the library will only + give headaches and pain to your users, who will see their + addressbook disappear and will complain to us (the Evolution + team) about losing their data. + + Besides, libdb will be linked statically, which means that your + distribution doesn't actually need to ship DB 3.1.17 itself + separately. + + The Evolution team will be infinitely grateful for your + co-operation. Thanks. + COMPILING BERKELEY DB --------------------- |