Merge from emacs--rel--22
[bpt/emacs.git] / INSTALL.CVS
CommitLineData
c2e309f2
GM
1Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007
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
13 $ ./configure
14 $ make bootstrap
15
16The bootstrap process makes sure all necessary files are rebuilt
17before it builds the final Emacs binary.
18
19Normally, it is not necessary to use "make bootstrap" after every CVS
7b245e63
RS
20update. Unless there are problems, we suggest using the following
21alternative procedure after you have done "make bootstrap" at least
22once:
e0156c8d
EZ
23
24 $ ./configure
25 $ make
26 $ cd lisp
27 $ make recompile EMACS=../src/emacs
28 $ cd ..
29 $ make
30
31(If you want to install the Emacs binary, type "make install" instead
32of "make" in the last command.)
33
0e21fc54
EZ
34Occasionally the file "lisp/loaddefs.el" will need be updated to
35reflect new autoloaded functions. If you see errors about undefined
36lisp functions during compilation, that may be the reason. Another
37symptom may be an error saying that "loaddefs.el" could not be found;
38this is due to a change in the way loaddefs.el was handled in CVS, and
39should only happen once, for users that are updating old CVS trees.
93e3e16a 40
0e21fc54 41To update loaddefs.el, do:
93e3e16a
MB
42
43 $ cd lisp
0e21fc54 44 $ make autoloads EMACS=../src/emacs
93e3e16a 45
10209171 46If either of the above partial procedures fails, try "make bootstrap".
e0156c8d
EZ
47
48Users of non-Posix systems (MS-Windows etc.) should run the
49platform-specific configuration scripts (nt/configure.bat, config.bat,
50etc.) before "make bootstrap" or "make"; the rest of the procedure is
10209171
EZ
51applicable to those systems as well, except that the value of the
52EMACS variable on the Make command line might be different, e.g.,
53../bin/emacs.exe or some such.
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
KS
59
60
25dc5de2 61Note on using SSH to access the CVS repository from inside Emacs
58ec79cf
KS
62----------------------------------------------------------------
63
64Write access to the CVS repository requires using SSH v2.
65
25dc5de2 66If you execute cvs commands inside Emacs, specifically if you use
58ec79cf 67pcl-cvs, output from CVS may be lost due to a problem in the
753a7f09
KS
68interface between ssh, cvs, and libc. Corrupted checkins are
69also known to have happened.
58ec79cf
KS
70
71To fix the problem, save the following script into a file, make it
72executable, and set CVS_RSH to the file name of the script:
73
74#!/bin/bash
75exec 2> >(exec cat >&2 2>/dev/null)
76exec ssh "$@"
77
78This may be combined with the following entry in ~/.ssh/config to
79simplify accessing the CVS repository:
80
81Host subversions.gnu.org
82 Protocol 2
83 ForwardX11 no
84 User YOUR_USERID
7f6d64f8
GM
85
86\f
87This file is part of GNU Emacs.
88
89GNU Emacs is free software; you can redistribute it and/or modify
90it under the terms of the GNU General Public License as published by
91the Free Software Foundation; either version 2, or (at your option)
92any later version.
93
94GNU Emacs is distributed in the hope that it will be useful,
95but WITHOUT ANY WARRANTY; without even the implied warranty of
96MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
97GNU General Public License for more details.
98
99You should have received a copy of the GNU General Public License
100along with GNU Emacs; see the file COPYING. If not, write to the
101Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
102Boston, MA 02110-1301, USA.