(xd_remove_watch): Avoid trying to convert a void* to
[bpt/emacs.git] / INSTALL.BZR
CommitLineData
dfe07b9d 1Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
c2e309f2 2 Free Software Foundation, Inc.
7f6d64f8 3See the end of the file for license conditions.
c2e309f2
GM
4
5
8bb25908 6 Building and Installing Emacs from Bazaar
e0156c8d 7
d0bec92c
JL
8If this is the first time you go through it, you'll need to configure
9before bootstrapping:
10
11 $ ./configure
12
e0156c8d 13Some of the files that are included in the Emacs tarball, such as
8bb25908
KF
14byte-compiled Lisp files, are not stored in Bazaar. Therefore, to
15build from Bazaar you must run "make bootstrap" instead of just "make":
e0156c8d 16
90412b21 17 $ bzr pull
e0156c8d
EZ
18 $ make bootstrap
19
8bb25908
KF
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.
e0156c8d 23
e0156c8d
EZ
24 $ make
25
26(If you want to install the Emacs binary, type "make install" instead
27of "make" in the last command.)
28
8871e7f5
GM
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. Another symptom may be an error saying that
35"loaddefs.el" could not be found; this is due to a change in the way
8bb25908
KF
36loaddefs.el was handled in version control, and should only happen
37once, for users that are updating old sources. Finally, sometimes
38there can be build failures related to *loaddefs.el (e.g. "required
39feature `esh-groups' was not provided"). In that case, follow the
40instructions below.
7aceaab5
GM
41
42To update loaddefs.el (and similar files), do:
93e3e16a
MB
43
44 $ cd lisp
e2401940 45 $ make autoloads
93e3e16a 46
10209171 47If either of the above partial procedures fails, try "make bootstrap".
604f2fc0
GM
48If CPU time is not an issue, the most thorough way to rebuild, and
49avoid any spurious problems, is always to use this method.
3102985a 50
e0156c8d
EZ
51Users of non-Posix systems (MS-Windows etc.) should run the
52platform-specific configuration scripts (nt/configure.bat, config.bat,
53etc.) before "make bootstrap" or "make"; the rest of the procedure is
e2401940 54applicable to those systems as well.
e0156c8d 55
8bb25908 56Questions, requests, and bug reports about the Bazaar versions of Emacs
b633b319
SM
57should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help
58or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will
59send it to the proper place.
58ec79cf 60
8bb25908 61Because the Bazaar version of Emacs is a work in progress, it will
01d909e2
GM
62sometimes fail to build. Please wait a day or so (and check the bug
63and development mailing list archives) before reporting such problems.
64In most cases, the problem is known about and is just waiting for
65someone to fix it.
66
58ec79cf 67
8bb25908
KF
68Note on accessing the Bazaar repository
69---------------------------------------
58ec79cf 70
8bb25908
KF
71Write access to the Bazaar repository is currently done via Bazaar's
72sftp:// protocol; see http://www.emacswiki.org/emacs/BzrForEmacsDevs.
73We plan to offer bzr+ssh:// access later. More discussion about that
74is at https://savannah.gnu.org/support/?107077.
58ec79cf 75
7f6d64f8
GM
76
77\f
78This file is part of GNU Emacs.
79
b33ba812 80GNU Emacs is free software: you can redistribute it and/or modify
7f6d64f8 81it under the terms of the GNU General Public License as published by
b33ba812
GM
82the Free Software Foundation, either version 3 of the License, or
83(at your option) any later version.
7f6d64f8
GM
84
85GNU Emacs is distributed in the hope that it will be useful,
86but WITHOUT ANY WARRANTY; without even the implied warranty of
87MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
88GNU General Public License for more details.
89
90You should have received a copy of the GNU General Public License
b33ba812 91along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.