Fix typo in my most-recent ChangeLog entry.
[bpt/emacs.git] / INSTALL.BZR
CommitLineData
95df8112 1Copyright (C) 2002-2011 Free Software Foundation, Inc.
7f6d64f8 2See the end of the file for license conditions.
c2e309f2
GM
3
4
8bb25908 5 Building and Installing Emacs from Bazaar
e0156c8d 6
66b87493
GM
7Building Emacs from Bazaar requires some tools that are not needed
8when building from a release. You will need:
d0bec92c 9
66b87493
GM
10autoconf - at least the version specified near the start of
11 configure.in (in the AC_PREREQ command).
12automake - we recommend at least version 1.11.
13makeinfo - not strictly necessary, but highly recommended, so that
14 you can build the manuals.
15
16The `autogen.sh' script can help you figure out if you have the
17necessary tools.
18
19The first time you build, there are a couple of extra steps.
ac45a338 20First, generate the `configure' script and some related files:
66b87493
GM
21
22 $ ./autogen.sh
d0bec92c 23
f6ca84c0 24(or you can just run `autoreconf -i -I m4').
66b87493
GM
25
26You can then configure your build (use `./configure --help' to see
27options you can set):
28
29 $ ./configure
d05e7e67 30
e0156c8d 31Some of the files that are included in the Emacs tarball, such as
8bb25908
KF
32byte-compiled Lisp files, are not stored in Bazaar. Therefore, to
33build from Bazaar you must run "make bootstrap" instead of just "make":
e0156c8d 34
90412b21 35 $ bzr pull
e0156c8d
EZ
36 $ make bootstrap
37
8bb25908
KF
38Normally, it is not necessary to use "make bootstrap" after every
39update from Bazaar. "make" should work in 90% of the cases and be
40much quicker.
e0156c8d 41
e0156c8d
EZ
42 $ make
43
44(If you want to install the Emacs binary, type "make install" instead
45of "make" in the last command.)
46
8871e7f5
GM
47Occasionally the file "lisp/loaddefs.el" (and similar automatically
48generated files, such as esh-groups.el, and *-loaddefs.el in some
49subdirectories of lisp/, e.g. mh-e/ and calendar/) will need to be
50updated to reflect new autoloaded functions. If you see errors (rather
51than warnings) about undefined lisp functions during compilation, that
6c3ab469
GM
52may be the reason. Finally, sometimes there can be build failures
53related to *loaddefs.el (e.g. "required feature `esh-groups' was not
54provided"). In that case, follow the instructions below.
7aceaab5
GM
55
56To update loaddefs.el (and similar files), do:
93e3e16a
MB
57
58 $ cd lisp
e2401940 59 $ make autoloads
93e3e16a 60
10209171 61If either of the above partial procedures fails, try "make bootstrap".
604f2fc0
GM
62If CPU time is not an issue, the most thorough way to rebuild, and
63avoid any spurious problems, is always to use this method.
3102985a 64
e0156c8d
EZ
65Users of non-Posix systems (MS-Windows etc.) should run the
66platform-specific configuration scripts (nt/configure.bat, config.bat,
67etc.) before "make bootstrap" or "make"; the rest of the procedure is
e2401940 68applicable to those systems as well.
e0156c8d 69
8bb25908 70Because the Bazaar version of Emacs is a work in progress, it will
919bbce0
GM
71sometimes fail to build. Please wait a day or so (and check the
72archives of the emacs-buildstatus, emacs-devel, and bug-gnu-emacs
73mailing lists) before reporting such problems. In most cases, the
74problem is known about and is just waiting for someone to fix it.
75This is especially true for Lisp compilation errors, which are almost
76never platform-specific.
01d909e2 77
58ec79cf 78
7f6d64f8
GM
79\f
80This file is part of GNU Emacs.
81
b33ba812 82GNU Emacs is free software: you can redistribute it and/or modify
7f6d64f8 83it under the terms of the GNU General Public License as published by
b33ba812
GM
84the Free Software Foundation, either version 3 of the License, or
85(at your option) any later version.
7f6d64f8
GM
86
87GNU Emacs is distributed in the hope that it will be useful,
88but WITHOUT ANY WARRANTY; without even the implied warranty of
89MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
90GNU General Public License for more details.
91
92You should have received a copy of the GNU General Public License
b33ba812 93along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.