* minibuf.c (Fall_completions): Minor optimization.
[bpt/emacs.git] / INSTALL.CVS
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
e0156c8d
EZ
6 Building and Installing Emacs from CVS
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
EZ
13Some of the files that are included in the Emacs tarball, such as
14byte-compiled Lisp files, are not stored in the CVS repository.
15Therefore, to build from CVS you must run "make bootstrap"
16instead of just "make":
17
90ce0919 18 $ cvs update -dP
e0156c8d
EZ
19 $ make bootstrap
20
e0156c8d 21Normally, it is not necessary to use "make bootstrap" after every CVS
49f6eb95 22update. "make" should work in 90% of the cases and be much 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
36loaddefs.el was handled in CVS, and should only happen once, for users
37that are updating old CVS trees. Finally, sometimes there can be build
38failures related to *loaddefs.el (e.g. "required feature `esh-groups'
39was not provided"). 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
7df58a0d 55Questions, requests, and bug reports about the CVS versions of Emacs
b633b319
SM
56should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help
57or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will
58send it to the proper place.
58ec79cf 59
01d909e2
GM
60Because the CVS version of Emacs is a work in progress, it will
61sometimes fail to build. Please wait a day or so (and check the bug
62and development mailing list archives) before reporting such problems.
63In most cases, the problem is known about and is just waiting for
64someone to fix it.
65
58ec79cf 66
25dc5de2 67Note on using SSH to access the CVS repository from inside Emacs
58ec79cf
KS
68----------------------------------------------------------------
69
70Write access to the CVS repository requires using SSH v2.
71
25dc5de2 72If you execute cvs commands inside Emacs, specifically if you use
58ec79cf 73pcl-cvs, output from CVS may be lost due to a problem in the
753a7f09
KS
74interface between ssh, cvs, and libc. Corrupted checkins are
75also known to have happened.
58ec79cf
KS
76
77To fix the problem, save the following script into a file, make it
78executable, and set CVS_RSH to the file name of the script:
79
80#!/bin/bash
81exec 2> >(exec cat >&2 2>/dev/null)
82exec ssh "$@"
83
84This may be combined with the following entry in ~/.ssh/config to
85simplify accessing the CVS repository:
86
87Host subversions.gnu.org
88 Protocol 2
89 ForwardX11 no
90 User YOUR_USERID
7f6d64f8
GM
91
92\f
93This file is part of GNU Emacs.
94
b33ba812 95GNU Emacs is free software: you can redistribute it and/or modify
7f6d64f8 96it under the terms of the GNU General Public License as published by
b33ba812
GM
97the Free Software Foundation, either version 3 of the License, or
98(at your option) any later version.
7f6d64f8
GM
99
100GNU Emacs is distributed in the hope that it will be useful,
101but WITHOUT ANY WARRANTY; without even the implied warranty of
102MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
103GNU General Public License for more details.
104
105You should have received a copy of the GNU General Public License
b33ba812 106along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.