(cal-menu-holidays-menu): Use calendar-cursor-holidays rather than
[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 $ ./configure
15 $ make bootstrap
16
17The bootstrap process makes sure all necessary files are rebuilt
274559e1
AM
18before it builds the final Emacs binary. Unfortunately, it doesn't
19always work when there are stale files from a previous build in the
20directory tree.
21
22So if 'make bootstrap' fails, it may be necessary first to do 'make
23maintainer-clean' to clear out these stale files. You can then try
90dc3c76 24again, starting with `./configure'.
1a93c12f 25
e0156c8d 26Normally, it is not necessary to use "make bootstrap" after every CVS
7b245e63
RS
27update. Unless there are problems, we suggest using the following
28alternative procedure after you have done "make bootstrap" at least
29once:
e0156c8d
EZ
30
31 $ ./configure
32 $ make
33 $ cd lisp
34 $ make recompile EMACS=../src/emacs
35 $ cd ..
36 $ make
37
38(If you want to install the Emacs binary, type "make install" instead
39of "make" in the last command.)
40
8871e7f5
GM
41Occasionally the file "lisp/loaddefs.el" (and similar automatically
42generated files, such as esh-groups.el, and *-loaddefs.el in some
43subdirectories of lisp/, e.g. mh-e/ and calendar/) will need to be
44updated to reflect new autoloaded functions. If you see errors (rather
45than warnings) about undefined lisp functions during compilation, that
46may be the reason. Another symptom may be an error saying that
47"loaddefs.el" could not be found; this is due to a change in the way
48loaddefs.el was handled in CVS, and should only happen once, for users
49that are updating old CVS trees. Finally, sometimes there can be build
50failures related to *loaddefs.el (e.g. "required feature `esh-groups'
51was not provided"). In that case, follow the instructions below.
7aceaab5
GM
52
53To update loaddefs.el (and similar files), do:
93e3e16a
MB
54
55 $ cd lisp
8871e7f5 56 $ make autogen-clean
0e21fc54 57 $ make autoloads EMACS=../src/emacs
93e3e16a 58
10209171 59If either of the above partial procedures fails, try "make bootstrap".
e0156c8d 60
3102985a
GM
61Very occasionally changes in the source can introduce
62incompatibilities with previous builds. If a bootstrap fails, as a
c3de2397
GM
63last resort try "make maintainer-clean" before configuring and
64bootstrapping again. If CPU time is not an issue, the most thorough
65way to rebuild, and avoid any spurious problems, is always to use this
66method.
3102985a 67
e0156c8d
EZ
68Users of non-Posix systems (MS-Windows etc.) should run the
69platform-specific configuration scripts (nt/configure.bat, config.bat,
70etc.) before "make bootstrap" or "make"; the rest of the procedure is
10209171
EZ
71applicable to those systems as well, except that the value of the
72EMACS variable on the Make command line might be different, e.g.,
73../bin/emacs.exe or some such.
e0156c8d 74
7df58a0d 75Questions, requests, and bug reports about the CVS versions of Emacs
b633b319
SM
76should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help
77or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will
78send it to the proper place.
58ec79cf
KS
79
80
25dc5de2 81Note on using SSH to access the CVS repository from inside Emacs
58ec79cf
KS
82----------------------------------------------------------------
83
84Write access to the CVS repository requires using SSH v2.
85
25dc5de2 86If you execute cvs commands inside Emacs, specifically if you use
58ec79cf 87pcl-cvs, output from CVS may be lost due to a problem in the
753a7f09
KS
88interface between ssh, cvs, and libc. Corrupted checkins are
89also known to have happened.
58ec79cf
KS
90
91To fix the problem, save the following script into a file, make it
92executable, and set CVS_RSH to the file name of the script:
93
94#!/bin/bash
95exec 2> >(exec cat >&2 2>/dev/null)
96exec ssh "$@"
97
98This may be combined with the following entry in ~/.ssh/config to
99simplify accessing the CVS repository:
100
101Host subversions.gnu.org
102 Protocol 2
103 ForwardX11 no
104 User YOUR_USERID
7f6d64f8
GM
105
106\f
107This file is part of GNU Emacs.
108
b33ba812 109GNU Emacs is free software: you can redistribute it and/or modify
7f6d64f8 110it under the terms of the GNU General Public License as published by
b33ba812
GM
111the Free Software Foundation, either version 3 of the License, or
112(at your option) any later version.
7f6d64f8
GM
113
114GNU Emacs is distributed in the hope that it will be useful,
115but WITHOUT ANY WARRANTY; without even the implied warranty of
116MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
117GNU General Public License for more details.
118
119You should have received a copy of the GNU General Public License
b33ba812 120along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.