single quote bug is resolved now
[mir.git] / doc / UPGRADING.mir
1 MIR UPGRADING HOWTO
2 ----------------------------------------------------------------
3
4 For releases after 1.0.0-rc1, always check the NEWS file at the root of the
5 tree to check the [Notes] section to see what you might have to adjust.
6
7 For non releases or releases before 1.0.0-rc1, aka. the latest sources from
8 CVS, it is a good idea to follow the advice below.
9
10 Due to weaknesses of the current Mir configuration system, many folks get
11 bitten after doing an update of their cvs tree. Suddenly Mir starts throwing
12 weird exceptions, etc.. The cause is usually a new config option in the
13 source/config.properties-dist that is missing from your
14 source/config.properties file (the one that is actually used).
15
16 a good way to check for this is to do the following (in the mir/ directory):
17
18 cd source
19 diff -u config.properties config.properties-dist
20
21 for this unfamiliar with the diff(1) program, you'll see a bunch of lines, some
22 starting with a "+" or "-". Look for a bunch of consecutive "+" symbols not
23 immeadiately followed by a "-". that usually is a new config option that you
24 should copy/paste (without the "+"'s of course) over to your existing
25 config.properties file and modify if necessary.
26
27 ----------------------------------------------------------------
28
29 last changed: $Date: 2002/12/07 07:00:16 $ - the Mir coders