Minor docfixes in imagemagick_load_image.
[bpt/emacs.git] / INSTALL.BZR
CommitLineData
067d23c9
KY
1Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
2 Free Software Foundation, Inc.
3See the end of the file for license conditions.
4
5
6 Building and Installing Emacs from Bazaar
7
8If this is the first time you go through it, you'll need to configure
9before bootstrapping:
10
11 $ ./configure
12
13Some of the files that are included in the Emacs tarball, such as
14byte-compiled Lisp files, are not stored in Bazaar. Therefore, to
15build from Bazaar you must run "make bootstrap" instead of just "make":
16
17 $ bzr pull
18 $ make bootstrap
19
20Normally, it is not necessary to use "make bootstrap" after every
21update from Bazaar. "make" should work in 90% of the cases and be
22much quicker.
23
24 $ make
25
26(If you want to install the Emacs binary, type "make install" instead
27of "make" in the last command.)
28
29Occasionally the file "lisp/loaddefs.el" (and similar automatically
30generated files, such as esh-groups.el, and *-loaddefs.el in some
31subdirectories of lisp/, e.g. mh-e/ and calendar/) will need to be
32updated to reflect new autoloaded functions. If you see errors (rather
33than warnings) about undefined lisp functions during compilation, that
34may be the reason. Finally, sometimes there can be build failures
35related to *loaddefs.el (e.g. "required feature `esh-groups' was not
36provided"). In that case, follow the instructions below.
37
38To update loaddefs.el (and similar files), do:
39
40 $ cd lisp
41 $ make autoloads
42
43If either of the above partial procedures fails, try "make bootstrap".
44If CPU time is not an issue, the most thorough way to rebuild, and
45avoid any spurious problems, is always to use this method.
46
47Users of non-Posix systems (MS-Windows etc.) should run the
48platform-specific configuration scripts (nt/configure.bat, config.bat,
49etc.) before "make bootstrap" or "make"; the rest of the procedure is
50applicable to those systems as well.
51
52Because the Bazaar version of Emacs is a work in progress, it will
53sometimes fail to build. Please wait a day or so (and check the bug
54and development mailing list archives) before reporting such problems.
55In most cases, the problem is known about and is just waiting for
56someone to fix it.
57
58
59\f
60This file is part of GNU Emacs.
61
62GNU Emacs is free software: you can redistribute it and/or modify
63it under the terms of the GNU General Public License as published by
64the Free Software Foundation, either version 3 of the License, or
65(at your option) any later version.
66
67GNU Emacs is distributed in the hope that it will be useful,
68but WITHOUT ANY WARRANTY; without even the implied warranty of
69MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
70GNU General Public License for more details.
71
72You should have received a copy of the GNU General Public License
73along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.