[OLD_FONT]: Remove obsolete font code.
[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
e2401940 34 $ make recompile
e0156c8d
EZ
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
e2401940 57 $ make autoloads
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
e2401940 71applicable to those systems as well.
e0156c8d 72
7df58a0d 73Questions, requests, and bug reports about the CVS versions of Emacs
b633b319
SM
74should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help
75or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will
76send it to the proper place.
58ec79cf
KS
77
78
25dc5de2 79Note on using SSH to access the CVS repository from inside Emacs
58ec79cf
KS
80----------------------------------------------------------------
81
82Write access to the CVS repository requires using SSH v2.
83
25dc5de2 84If you execute cvs commands inside Emacs, specifically if you use
58ec79cf 85pcl-cvs, output from CVS may be lost due to a problem in the
753a7f09
KS
86interface between ssh, cvs, and libc. Corrupted checkins are
87also known to have happened.
58ec79cf
KS
88
89To fix the problem, save the following script into a file, make it
90executable, and set CVS_RSH to the file name of the script:
91
92#!/bin/bash
93exec 2> >(exec cat >&2 2>/dev/null)
94exec ssh "$@"
95
96This may be combined with the following entry in ~/.ssh/config to
97simplify accessing the CVS repository:
98
99Host subversions.gnu.org
100 Protocol 2
101 ForwardX11 no
102 User YOUR_USERID
7f6d64f8
GM
103
104\f
105This file is part of GNU Emacs.
106
b33ba812 107GNU Emacs is free software: you can redistribute it and/or modify
7f6d64f8 108it under the terms of the GNU General Public License as published by
b33ba812
GM
109the Free Software Foundation, either version 3 of the License, or
110(at your option) any later version.
7f6d64f8
GM
111
112GNU Emacs is distributed in the hope that it will be useful,
113but WITHOUT ANY WARRANTY; without even the implied warranty of
114MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
115GNU General Public License for more details.
116
117You should have received a copy of the GNU General Public License
b33ba812 118along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.