* INSTALL, INSTALL.ja: Updated recommended version of FLIM to 1.14.5.
[elisp/wanderlust.git] / INSTALL
1
2         How to install Wanderlust
3
4                                         Kaoru Takahashi,
5                                         Yuuichi Teranishi,
6                                         Tsunehiko Baba
7
8 System Requirements
9 ===================
10
11   Wanderlust supports following Emacsen:
12
13         Mule 2.3 based on Emacs 19.34
14         Emacs 20.1 or later
15         XEmacs 20.4 or later
16
17   Before installing Wanderlust, please install the following MIME
18   modules.
19
20         SEMI    (1.14.3 or later)
21         FLIM    (1.14.3 or later)
22
23   Wanderlust and MIME modules require APEL.  Before installing MIME
24   modules, please install the APEL.
25
26         APEL    (10.3 or later)
27
28
29 Select MIME Module
30 ==================
31
32   For each Emacsen, Recommended combination of MIME module package
33   follows.
34
35   (a) XEmacs 21.1 or later
36
37         APEL 10.4, FLIM 1.14.5, SEMI 1.14.5
38
39     Installation as a XEmacs package, If possible.
40
41   (b) Emacs 20.4 or later
42
43         APEL 10.4, FLIM 1.14.5, SEMI 1.14.5
44
45  (c) Emacs 20.1 to 20.3
46
47         APEL 10.4, CLIME 1.14.5, SEMI 1.14.5
48
49     Use CLIME instead of FLIM.  FLIM does not support Emacs 20.3 or
50     earlier.
51
52   (d) Emacs 19.34 (Mule 2.3)
53
54         APEL 10.4, CLIME 1.14.5, SEMI 1.14.5
55
56     Mule based on Emacs 19.34 can also run SEMI.  See the following web
57     page to get more information (in Japanese).
58
59         http://www.jpl.org/elips/INSTALL-SEMI-ja.html
60
61
62 Install MIME Module
63 ===================
64
65   You can download these packages from following URLs.
66
67         APEL:   ftp://ftp.m17n.org/pub/mule/apel/
68         FLIM:   ftp://ftp.m17n.org/pub/mule/flim/
69         CLIME:  ftp://ftp.jpl.org/pub/m17n/
70         SEMI:   ftp://ftp.m17n.org/pub/mule/semi/
71
72   Please install APEL, FLIM(CLIME), and SEMI, in that order.  Generally,
73   'make install' will do the job.  To get full information, please refer
74   to the README.en within each package.
75
76   You can also use many other FLIM/SEMI variants.  Combination of the
77   latest versions should work.  For example, the following combinations
78   are confirmed to work:
79
80         APEL 10.4, SLIM 1.14.9, SEMI 1.14.5
81         APEL 10.4, CLIME 1.14.5, EMIKO 1.14.1
82
83   You have to re-install Wanderlust if you upgraded APEL, FLIM, or SEMI.
84
85   Do following, running environment test included APEL, FLIM, and SEMI
86   version check.  You can specify the emacs command name.
87
88         % make check
89         % make EMACS=xemacs check
90
91 Installation
92 ============
93
94 (a) Edit Makefile
95
96   Edit EMACS, LISPDIR, and so on in Makefile.
97
98         EMACS      Emacs command name.
99         LISPDIR    site-lisp directory.
100
101   If LISPDIR is not specified (or NONE by default), it is automatically
102   detected.
103
104 (b) Bytecompile and Install
105
106   Please do following.
107
108         % make
109         % make install
110
111   If you use Emacs without subdirs.el, the following error message
112   occasionally appears.
113
114         Cannot open load file: mime-setup
115
116   In this case, add directories of custom, APEL, FLIM, SEMI to
117   EMACSLOADPATH (environment variable), or add those directories to
118   load-path in WL-CFG.
119
120
121 Install as a XEmacs package
122 ===========================
123
124   Wanderlust is able to be installed as one of XEmacs (21.0 or later)
125   packages.  After installation as a XEmacs package, you do not need
126   configurations of autoload, icon path in your own .emacs file.
127
128 (a) Edit Makefile
129
130   Edit XEMACS, PACKAGEDIR, and so on in Makefile.
131
132         XEMACS      XEmacs command name.
133         PACKAGEDIR  package directory.
134
135   If PACKAGEDIR is not specified (NONE by default) and the SEMI
136   modules have been installed, it is automatically detected.
137
138 (b) Bytecompile and Install
139
140   Please do following.
141
142         % make package
143         % make install-package
144
145   Install with Info file.
146
147
148 load-path
149 =========
150
151   If you are using Emacs 20.3 or later, or XEmacs, there is no need
152   to set load-path.
153
154   If you are using Emacs 20.2 or earlier, please add the directory of
155   Wanderlust to load-path.
156
157   If you install by default setting, with Emacs 19.29 or later, Emacs
158   20.1, or Emacs 20.2, you can write subdirs.el for example:
159
160   --------------------------------------------------------------------
161     (normal-top-level-add-to-load-path
162      '("apel" "flim" "semi" "wl"))
163   --------------------------------------------------------------------
164
165
166 Manual
167 ======
168
169   Manual is described in Info format. Please do following.
170
171         % make info
172         % make install-info
173
174   If you install Wanderlust as a XEmacs package, Info file is already
175   installed too, so there are no need of these commands.
176
177   Manual directory is automatically detected. Of course, it can be
178   configured by INFODIR in Makefile.
179
180
181 Sample configuration file
182 =========================
183
184   Wanderlust requires the following three configuration files:
185
186         ~/.wl           Wanderlust Configuration (loaded at startup)
187         ~/.folders      Folder Book
188         ~/.addresses    Address Book (optional)
189
190   Each sample file (dot.addresses, dot.folders, dot.wl) exists on
191   samples/en/ directory. Please refer to them.
192
193   To get full information, please read Info file.
194
195
196 Local Variables: 
197 fill-column: 72
198 End: