Mercurial > emacs
annotate INSTALL.CVS @ 95670:d4f0cb2dfc4d
*** empty log message ***
author | Martin Rudalics <rudalics@gmx.at> |
---|---|
date | Sun, 08 Jun 2008 13:02:38 +0000 |
parents | 4d398dc53b2d |
children | 88b2fb5783a6 |
rev | line source |
---|---|
79751 | 1 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
75587
68cfc1db0d26
Add copyright and permissions notices.
Glenn Morris <rgm@gnu.org>
parents:
72914
diff
changeset
|
2 Free Software Foundation, Inc. |
75769
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
3 See the end of the file for license conditions. |
75587
68cfc1db0d26
Add copyright and permissions notices.
Glenn Morris <rgm@gnu.org>
parents:
72914
diff
changeset
|
4 |
68cfc1db0d26
Add copyright and permissions notices.
Glenn Morris <rgm@gnu.org>
parents:
72914
diff
changeset
|
5 |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
6 Building and Installing Emacs from CVS |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
7 |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
8 Some of the files that are included in the Emacs tarball, such as |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
9 byte-compiled Lisp files, are not stored in the CVS repository. |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
10 Therefore, to build from CVS you must run "make bootstrap" |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
11 instead of just "make": |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
12 |
95663
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
13 $ cvs update |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
14 $ ./configure |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
15 $ make bootstrap |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
16 |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
17 The bootstrap process makes sure all necessary files are rebuilt |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
18 before it builds the final Emacs binary. |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
19 |
94434
561a10e874f2
Explain how to work awound an error case.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94035
diff
changeset
|
20 If 'make bootstrap' fails, it may be necessary to do 'make maintainer-clean' |
561a10e874f2
Explain how to work awound an error case.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94035
diff
changeset
|
21 followed by configure before trying it again. (Occasionally the loaddefs.el |
561a10e874f2
Explain how to work awound an error case.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94035
diff
changeset
|
22 file gets into a bad state due to changes in the Lisp libraries; this procedure |
561a10e874f2
Explain how to work awound an error case.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94035
diff
changeset
|
23 forces it to be regenerated.) |
561a10e874f2
Explain how to work awound an error case.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94035
diff
changeset
|
24 |
95663
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
25 If even 'make bootstrap' followed by 'make maintainer-clean' fails, it may |
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
26 be that some reorganization of the tree has created a new subdirectory. Try |
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
27 this: |
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
28 |
95664 | 29 $ cvs update -d |
95663
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
30 $ make maintainer-clean |
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
31 $ ./configure |
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
32 $ make bootstrap |
8e882cf9cfb0
Document when cvs -d up may be needed.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94719
diff
changeset
|
33 |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
34 Normally, it is not necessary to use "make bootstrap" after every CVS |
72407 | 35 update. Unless there are problems, we suggest using the following |
36 alternative procedure after you have done "make bootstrap" at least | |
37 once: | |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
38 |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
39 $ ./configure |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
40 $ make |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
41 $ cd lisp |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
42 $ make recompile EMACS=../src/emacs |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
43 $ cd .. |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
44 $ make |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
45 |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
46 (If you want to install the Emacs binary, type "make install" instead |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
47 of "make" in the last command.) |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
48 |
93899 | 49 Occasionally the file "lisp/loaddefs.el" (and similar *-loaddefs.el |
50 files in some subdirectories of lisp/, e.g. mh-e/ and calendar/) will | |
51 need to be updated to reflect new autoloaded functions. If you see | |
52 errors (rather than warnings) about undefined lisp functions during | |
53 compilation, that may be the reason. Another symptom may be an error | |
54 saying that "loaddefs.el" could not be found; this is due to a change | |
55 in the way loaddefs.el was handled in CVS, and should only happen | |
56 once, for users that are updating old CVS trees. Finally, sometimes | |
57 there can be build failures related to *loaddefs.el. In that case, | |
58 delete them before following the instructions below to update them. | |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
59 |
93899 | 60 To update loaddefs.el (and similar files), do: |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
61 |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
62 $ cd lisp |
68587
1438f2238634
mh-autoloads is now a dependency of recompile, no need to remake it manually.
Eli Zaretskii <eliz@gnu.org>
parents:
66301
diff
changeset
|
63 $ make autoloads EMACS=../src/emacs |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
64 |
66301
6f111b7dd138
Add mh-autoloads to the partial rebuild procedure.
Eli Zaretskii <eliz@gnu.org>
parents:
54679
diff
changeset
|
65 If either of the above partial procedures fails, try "make bootstrap". |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
66 |
93869
f06f50495cd9
Mention deleting loaddefs, maintainer-clean.
Glenn Morris <rgm@gnu.org>
parents:
79751
diff
changeset
|
67 Very occasionally changes in the source can introduce |
f06f50495cd9
Mention deleting loaddefs, maintainer-clean.
Glenn Morris <rgm@gnu.org>
parents:
79751
diff
changeset
|
68 incompatibilities with previous builds. If a bootstrap fails, as a |
94035
a278a40360a9
Mention configuring after maintainer-clean.
Glenn Morris <rgm@gnu.org>
parents:
93899
diff
changeset
|
69 last resort try "make maintainer-clean" before configuring and |
a278a40360a9
Mention configuring after maintainer-clean.
Glenn Morris <rgm@gnu.org>
parents:
93899
diff
changeset
|
70 bootstrapping again. If CPU time is not an issue, the most thorough |
a278a40360a9
Mention configuring after maintainer-clean.
Glenn Morris <rgm@gnu.org>
parents:
93899
diff
changeset
|
71 way to rebuild, and avoid any spurious problems, is always to use this |
a278a40360a9
Mention configuring after maintainer-clean.
Glenn Morris <rgm@gnu.org>
parents:
93899
diff
changeset
|
72 method. |
93869
f06f50495cd9
Mention deleting loaddefs, maintainer-clean.
Glenn Morris <rgm@gnu.org>
parents:
79751
diff
changeset
|
73 |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
74 Users of non-Posix systems (MS-Windows etc.) should run the |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
75 platform-specific configuration scripts (nt/configure.bat, config.bat, |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
76 etc.) before "make bootstrap" or "make"; the rest of the procedure is |
66301
6f111b7dd138
Add mh-autoloads to the partial rebuild procedure.
Eli Zaretskii <eliz@gnu.org>
parents:
54679
diff
changeset
|
77 applicable to those systems as well, except that the value of the |
6f111b7dd138
Add mh-autoloads to the partial rebuild procedure.
Eli Zaretskii <eliz@gnu.org>
parents:
54679
diff
changeset
|
78 EMACS variable on the Make command line might be different, e.g., |
6f111b7dd138
Add mh-autoloads to the partial rebuild procedure.
Eli Zaretskii <eliz@gnu.org>
parents:
54679
diff
changeset
|
79 ../bin/emacs.exe or some such. |
53439
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
80 |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
81 Questions, requests, and bug reports about the CVS versions of Emacs |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
82 should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
83 or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will |
19d4dac27e5c
Renamed INSTALL-CVS to INSTALL.CVS to avoid file-name
Eli Zaretskii <eliz@is.elta.co.il>
parents:
diff
changeset
|
84 send it to the proper place. |
54055
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
85 |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
86 |
54679
821beb22a34c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54055
diff
changeset
|
87 Note on using SSH to access the CVS repository from inside Emacs |
54055
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
88 ---------------------------------------------------------------- |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
89 |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
90 Write access to the CVS repository requires using SSH v2. |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
91 |
54679
821beb22a34c
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54055
diff
changeset
|
92 If you execute cvs commands inside Emacs, specifically if you use |
54055
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
93 pcl-cvs, output from CVS may be lost due to a problem in the |
72914
ede32cd24dba
Corrupted checkins are known to have happened.
Kim F. Storm <storm@cua.dk>
parents:
72407
diff
changeset
|
94 interface between ssh, cvs, and libc. Corrupted checkins are |
ede32cd24dba
Corrupted checkins are known to have happened.
Kim F. Storm <storm@cua.dk>
parents:
72407
diff
changeset
|
95 also known to have happened. |
54055
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
96 |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
97 To fix the problem, save the following script into a file, make it |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
98 executable, and set CVS_RSH to the file name of the script: |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
99 |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
100 #!/bin/bash |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
101 exec 2> >(exec cat >&2 2>/dev/null) |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
102 exec ssh "$@" |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
103 |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
104 This may be combined with the following entry in ~/.ssh/config to |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
105 simplify accessing the CVS repository: |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
106 |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
107 Host subversions.gnu.org |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
108 Protocol 2 |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
109 ForwardX11 no |
6a13a0f9d22b
Add info about ssh/cvs related problems and work-around.
Kim F. Storm <storm@cua.dk>
parents:
53439
diff
changeset
|
110 User YOUR_USERID |
75769
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
111 |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
112 |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
113 This file is part of GNU Emacs. |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
114 |
94719
1a762a842f80
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94434
diff
changeset
|
115 GNU Emacs is free software: you can redistribute it and/or modify |
75769
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
116 it under the terms of the GNU General Public License as published by |
94719
1a762a842f80
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94434
diff
changeset
|
117 the Free Software Foundation, either version 3 of the License, or |
1a762a842f80
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94434
diff
changeset
|
118 (at your option) any later version. |
75769
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
119 |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
120 GNU Emacs is distributed in the hope that it will be useful, |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
121 but WITHOUT ANY WARRANTY; without even the implied warranty of |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
122 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
123 GNU General Public License for more details. |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
124 |
92a0e87ff562
Switch to standard GPL text for license.
Glenn Morris <rgm@gnu.org>
parents:
75587
diff
changeset
|
125 You should have received a copy of the GNU General Public License |
94719
1a762a842f80
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94434
diff
changeset
|
126 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |