* calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
[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
d0bec92c
JL
7If this is the first time you go through it, you'll need to configure
8before bootstrapping:
9
10 $ ./configure
11
f9fa9e49
GM
12(Normally there is no need to run `autoconf' etc. If you do need it,
13the relevant command is `autoreconf -I m4'. Be aware that this will
14likely lead to conflicts next time you update from Bazaar.)
d05e7e67 15
e0156c8d 16Some of the files that are included in the Emacs tarball, such as
8bb25908
KF
17byte-compiled Lisp files, are not stored in Bazaar. Therefore, to
18build from Bazaar you must run "make bootstrap" instead of just "make":
e0156c8d 19
90412b21 20 $ bzr pull
e0156c8d
EZ
21 $ make bootstrap
22
8bb25908
KF
23Normally, it is not necessary to use "make bootstrap" after every
24update from Bazaar. "make" should work in 90% of the cases and be
25much quicker.
e0156c8d 26
e0156c8d
EZ
27 $ make
28
29(If you want to install the Emacs binary, type "make install" instead
30of "make" in the last command.)
31
8871e7f5
GM
32Occasionally the file "lisp/loaddefs.el" (and similar automatically
33generated files, such as esh-groups.el, and *-loaddefs.el in some
34subdirectories of lisp/, e.g. mh-e/ and calendar/) will need to be
35updated to reflect new autoloaded functions. If you see errors (rather
36than warnings) about undefined lisp functions during compilation, that
6c3ab469
GM
37may be the reason. Finally, sometimes there can be build failures
38related to *loaddefs.el (e.g. "required feature `esh-groups' was not
39provided"). In that case, follow the instructions below.
7aceaab5
GM
40
41To update loaddefs.el (and similar files), do:
93e3e16a
MB
42
43 $ cd lisp
e2401940 44 $ make autoloads
93e3e16a 45
10209171 46If either of the above partial procedures fails, try "make bootstrap".
604f2fc0
GM
47If CPU time is not an issue, the most thorough way to rebuild, and
48avoid any spurious problems, is always to use this method.
3102985a 49
e0156c8d
EZ
50Users of non-Posix systems (MS-Windows etc.) should run the
51platform-specific configuration scripts (nt/configure.bat, config.bat,
52etc.) before "make bootstrap" or "make"; the rest of the procedure is
e2401940 53applicable to those systems as well.
e0156c8d 54
8bb25908 55Because the Bazaar version of Emacs is a work in progress, it will
01d909e2
GM
56sometimes fail to build. Please wait a day or so (and check the bug
57and development mailing list archives) before reporting such problems.
58In most cases, the problem is known about and is just waiting for
59someone to fix it.
60
58ec79cf 61
7f6d64f8
GM
62\f
63This file is part of GNU Emacs.
64
b33ba812 65GNU Emacs is free software: you can redistribute it and/or modify
7f6d64f8 66it under the terms of the GNU General Public License as published by
b33ba812
GM
67the Free Software Foundation, either version 3 of the License, or
68(at your option) any later version.
7f6d64f8
GM
69
70GNU Emacs is distributed in the hope that it will be useful,
71but WITHOUT ANY WARRANTY; without even the implied warranty of
72MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
73GNU General Public License for more details.
74
75You should have received a copy of the GNU General Public License
b33ba812 76along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.