Add 2009 to copyright years.
[bpt/emacs.git] / INSTALL.CVS
CommitLineData
57ebf0be 1Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
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
8Some of the files that are included in the Emacs tarball, such as
9byte-compiled Lisp files, are not stored in the CVS repository.
10Therefore, to build from CVS you must run "make bootstrap"
11instead of just "make":
12
90ce0919 13 $ cvs update -dP
e0156c8d
EZ
14 $ make bootstrap
15
49f6eb95
SM
16Of course, if this is the first time you go through it, you'll need to do
17./configure before the "make bootstrap".
1a93c12f 18
e0156c8d 19Normally, it is not necessary to use "make bootstrap" after every CVS
49f6eb95 20update. "make" should work in 90% of the cases and be much quicker.
e0156c8d 21
e0156c8d
EZ
22 $ make
23
24(If you want to install the Emacs binary, type "make install" instead
25of "make" in the last command.)
26
8871e7f5
GM
27Occasionally the file "lisp/loaddefs.el" (and similar automatically
28generated files, such as esh-groups.el, and *-loaddefs.el in some
29subdirectories of lisp/, e.g. mh-e/ and calendar/) will need to be
30updated to reflect new autoloaded functions. If you see errors (rather
31than warnings) about undefined lisp functions during compilation, that
32may be the reason. Another symptom may be an error saying that
33"loaddefs.el" could not be found; this is due to a change in the way
34loaddefs.el was handled in CVS, and should only happen once, for users
35that are updating old CVS trees. Finally, sometimes there can be build
36failures related to *loaddefs.el (e.g. "required feature `esh-groups'
37was not provided"). In that case, follow the instructions below.
7aceaab5
GM
38
39To update loaddefs.el (and similar files), do:
93e3e16a
MB
40
41 $ cd lisp
8871e7f5 42 $ make autogen-clean
e2401940 43 $ make autoloads
93e3e16a 44
10209171 45If either of the above partial procedures fails, try "make bootstrap".
e0156c8d 46
3102985a
GM
47Very occasionally changes in the source can introduce
48incompatibilities with previous builds. If a bootstrap fails, as a
c3de2397
GM
49last resort try "make maintainer-clean" before configuring and
50bootstrapping again. If CPU time is not an issue, the most thorough
51way to rebuild, and avoid any spurious problems, is always to use this
52method.
3102985a 53
e0156c8d
EZ
54Users of non-Posix systems (MS-Windows etc.) should run the
55platform-specific configuration scripts (nt/configure.bat, config.bat,
56etc.) before "make bootstrap" or "make"; the rest of the procedure is
e2401940 57applicable to those systems as well.
e0156c8d 58
7df58a0d 59Questions, requests, and bug reports about the CVS versions of Emacs
b633b319
SM
60should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help
61or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will
62send it to the proper place.
58ec79cf 63
01d909e2
GM
64Because the CVS version of Emacs is a work in progress, it will
65sometimes fail to build. Please wait a day or so (and check the bug
66and development mailing list archives) before reporting such problems.
67In most cases, the problem is known about and is just waiting for
68someone to fix it.
69
58ec79cf 70
25dc5de2 71Note on using SSH to access the CVS repository from inside Emacs
58ec79cf
KS
72----------------------------------------------------------------
73
74Write access to the CVS repository requires using SSH v2.
75
25dc5de2 76If you execute cvs commands inside Emacs, specifically if you use
58ec79cf 77pcl-cvs, output from CVS may be lost due to a problem in the
753a7f09
KS
78interface between ssh, cvs, and libc. Corrupted checkins are
79also known to have happened.
58ec79cf
KS
80
81To fix the problem, save the following script into a file, make it
82executable, and set CVS_RSH to the file name of the script:
83
84#!/bin/bash
85exec 2> >(exec cat >&2 2>/dev/null)
86exec ssh "$@"
87
88This may be combined with the following entry in ~/.ssh/config to
89simplify accessing the CVS repository:
90
91Host subversions.gnu.org
92 Protocol 2
93 ForwardX11 no
94 User YOUR_USERID
7f6d64f8
GM
95
96\f
97This file is part of GNU Emacs.
98
b33ba812 99GNU Emacs is free software: you can redistribute it and/or modify
7f6d64f8 100it under the terms of the GNU General Public License as published by
b33ba812
GM
101the Free Software Foundation, either version 3 of the License, or
102(at your option) any later version.
7f6d64f8
GM
103
104GNU Emacs is distributed in the hope that it will be useful,
105but WITHOUT ANY WARRANTY; without even the implied warranty of
106MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
107GNU General Public License for more details.
108
109You should have received a copy of the GNU General Public License
b33ba812 110along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.