(transient-mark-mode): Turn on by default.
[bpt/emacs.git] / INSTALL.CVS
... / ...
CommitLineData
1Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
2 Free Software Foundation, Inc.
3See the end of the file for license conditions.
4
5
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
20update. Unless there are problems, we suggest using the following
21alternative procedure after you have done "make bootstrap" at least
22once:
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
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.
40
41To update loaddefs.el, do:
42
43 $ cd lisp
44 $ make autoloads EMACS=../src/emacs
45
46If either of the above partial procedures fails, try "make bootstrap".
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
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.
54
55Questions, requests, and bug reports about the CVS versions of Emacs
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.
59
60
61Note on using SSH to access the CVS repository from inside Emacs
62----------------------------------------------------------------
63
64Write access to the CVS repository requires using SSH v2.
65
66If you execute cvs commands inside Emacs, specifically if you use
67pcl-cvs, output from CVS may be lost due to a problem in the
68interface between ssh, cvs, and libc. Corrupted checkins are
69also known to have happened.
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
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 3, 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.