XEmacs 21.2.5
[chise/xemacs-chise.git.1] / lisp / paths.el
1 ;;; paths.el --- define pathnames for use by various Emacs commands.
2
3 ;; Copyright (C) 1986, 1988, 1993, 1994, 1997 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: internal, dumped
7
8 ;; This file is part of XEmacs.
9
10 ;; XEmacs is free software; you can redistribute it and/or modify it
11 ;; under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; XEmacs is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with XEmacs; see the file COPYING.  If not, write to the Free
22 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 ;;; Synched up with: FSF 19.30.
25
26 ;;; Commentary:
27
28 ;; This file is dumped with XEmacs.
29
30 ;; These are default settings for names of certain files and directories
31 ;; that Emacs needs to refer to from time to time.
32
33 ;; If these settings are not right, override them with `setq'
34 ;; in site-start.el.  Do not change this file.
35
36 ;;; Code:
37
38 ;Note: FSF's version is:
39 ;(defvar Info-default-directory-list
40 ;  (let ((start (list "/usr/local/lib/info/"
41 ;                     ;; This comes second so that, if it is the same
42 ;                     ;; as configure-info-directory (which is usually true)
43 ;                     ;; and Emacs has been installed (also usually true)
44 ;                     ;; then the list will end with two copies of this;
45 ;                     ;; which means that the last dir file Info-insert-dir
46 ;                     ;; finds will be the one in this directory.
47 ;                     "/usr/local/info/"))
48 ;        (configdir (file-name-as-directory configure-info-directory)))
49 ;    (setq start (nconc start (list configdir)))
50 ;    start)
51 ;  "List of directories to search for Info documentation files.
52 ;They are searched in the order they are given in this list.
53 ;Therefore, the directory of Info files that come with Emacs
54 ;normally should come last (so that local files override standard ones).")
55
56 ;Our commented-out version is:
57 ;(defvar Info-default-directory-list
58 ;  (let ((start (list "/usr/local/info/"
59 ;                    "/usr/local/lib/info/"))
60 ;       (configdir (file-name-as-directory configure-info-directory)))
61 ;    (or (member configdir start)
62 ;       (setq start (nconc start (list configdir))))
63 ;    (or (member (expand-file-name "../info/" data-directory) start)
64 ;       (setq start
65 ;             (nconc start
66 ;                    (list (expand-file-name "../info/" data-directory)))))
67 ;    start)
68 ;  "List of directories to search for Info documentation files.")
69
70 (defvar news-path "/usr/spool/news/"
71   "The root directory below which all news files are stored.")
72
73 (defvar news-inews-program nil
74   "Program to post news.")
75
76 ;(defvar gnus-default-nntp-server ""
77 ;  ;; set this to your local server
78 ;  "The name of the host running an NNTP server.
79 ;If it is a string such as \":DIRECTORY\", then ~/DIRECTORY
80 ;is used as a news spool.  `gnus-nntp-server' is initialized from NNTPSERVER
81 ;environment variable or, if none, this value.")
82
83 ;(defvar gnus-nntp-service "nntp"
84 ;  "NNTP service name, usually \"nntp\" or 119).
85 ;Go to a local news spool if its value is nil, in which case `gnus-nntp-server'
86 ;should be set to `(system-name)'.")
87
88 (defvar gnus-local-domain nil
89   "*Your domain name without a host name: for example, \"ai.mit.edu\".
90 The DOMAINNAME environment variable is used instead if defined.
91 If the function `system-name' returns a fully qualified domain name,
92 there is no need to set this variable.")
93
94 (defvar gnus-local-organization nil
95   "*The name of your organization, as a string.
96 The `ORGANIZATION' environment variable is used instead if defined.")
97
98 (defvar mh-progs nil
99   "Directory containing MH commands.")
100
101 (defvar mh-lib nil
102   "Directory of MH library.")
103
104 (defvar rmail-file-name (purecopy "~/RMAIL")
105   "Name of user's primary mail file.")
106
107 (defvar gnus-startup-file (purecopy "~/.newsrc")
108   "The file listing groups to which user is subscribed.
109 Will use `gnus-startup-file'-SERVER instead if exists.")
110
111 (defconst rmail-spool-directory nil
112   "Name of directory used by system mailer for delivering new mail.
113 Its name should end with a slash.")
114
115 (defconst sendmail-program nil
116   "Program used to send messages.")
117
118 (defconst remote-shell-program nil
119   "Program used to execute shell commands on a remote machine.")
120
121 (defconst term-file-prefix (purecopy "term/")
122   "If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
123 You may set this variable to nil in your `.emacs' file if you do not wish
124 the terminal-initialization file to be loaded.")
125
126 (defconst manual-program nil
127   "Program to run to print man pages.")
128
129 (defconst abbrev-file-name (purecopy "~/.abbrev_defs")
130   "*Default name of file to read abbrevs from.")
131
132 (defconst directory-abbrev-alist
133   (list
134    ;;
135    ;; This matches the default Sun automounter temporary mount points.  These
136    ;; temporary mount points may go away, so it's important that we only try
137    ;; to read files under the "advertised" mount point, rather than the
138    ;; temporary one, or it will look like files have been deleted on us.
139    ;; Whoever came up with this design is clearly a moron of the first order,
140    ;; but now we're stuck with it, no doubt until the end of time.
141    ;;
142    ;; For best results, automounter junk should go near the front of this
143    ;; list, and other user translations should come after it.
144    ;;
145    ;; You may need to change this if you're not running the Sun automounter,
146    ;; if you're not running in the default configuration.  Because the
147    ;; designers (and I use that term loosely) of the automounters failed to
148    ;; provide any uniform way of disambiguating a pathname, emacs needs to
149    ;; have knowledge about exactly how the automounter mangles pathnames
150    ;; (and this knowledge is basically impossible to derive at run-time.)
151    ;;
152    (cons (purecopy "\\`/tmp_mnt/") (purecopy "/"))
153    ))
154
155 ;; Formerly, the values of these variables were computed once
156 ;; (at dump time).  However, with the advent of pre-compiled binaries
157 ;; and homebrewed systems such as Linux where who knows where the
158 ;; hell the various programs may be located (if they even exist at all),
159 ;; it's clear that we need to recompute these values at run time.
160 ;; In typical short-sightedness, site administrators have been told up
161 ;; till now to do `setq's in site-init.el, which is run only once --
162 ;; at dump time.  So we have to do contortions to make sure we don't
163 ;; override values set in site-init.el.
164
165 (defun initialize-xemacs-paths ()
166   "Initialize the XEmacs path variables from the environment.
167 Called automatically at dump time and run time.  Do not call this.
168 Will not override settings in site-init.el or site-run.el."
169   (let ((l #'(lambda (var value)
170                (let ((origsym (intern (concat "paths-el-original-"
171                                               (symbol-name var)))))
172                  (if (running-temacs-p)
173                      (progn
174                        (set var value)
175                        (set origsym value))
176                    (and (eq (symbol-value var) (symbol-value origsym))
177                         (set var value)))))))
178     (funcall
179      l 'news-inews-program
180      (cond ((file-exists-p "/usr/bin/inews") "/usr/bin/inews")
181            ((file-exists-p "/usr/local/inews") "/usr/local/inews")
182            ((file-exists-p "/usr/local/bin/inews") "/usr/local/bin/inews")
183            ((file-exists-p "/usr/lib/news/inews") "/usr/lib/news/inews")
184            (t "inews")))
185
186     (funcall
187      l 'mh-progs
188      (cond ((file-directory-p "/usr/bin/mh") "/usr/bin/mh/") ;Ultrix 4.2
189            ((file-directory-p "/usr/new/mh") "/usr/new/mh/") ;Ultrix <4.2
190            ((file-directory-p "/usr/local/bin/mh") "/usr/local/bin/mh/")
191            ((file-directory-p "/usr/local/mh") "/usr/local/mh/")
192            (t "/usr/local/bin/")))
193
194     (funcall
195      l 'mh-libs
196      (cond ((file-directory-p "/usr/lib/mh") "/usr/lib/mh/") ;Ultrix 4.2
197            ((file-directory-p "/usr/new/lib/mh")
198             "/usr/new/lib/mh/") ;Ultrix <4.2
199            ((file-directory-p "/usr/local/lib/mh") "/usr/local/lib/mh/")
200            (t "/usr/local/bin/mh/")))
201
202     (funcall
203      l 'rmail-spool-directory
204      (cond ((string-match "^[^-]+-[^-]+-sco3.2v4" system-configuration)
205             "/usr/spool/mail/")
206            ;; On The Bull DPX/2 /usr/spool/mail is used although 
207            ;; it is usg-unix-v.
208            ((string-match "^m68k-bull-sysv3" system-configuration)
209             "/usr/spool/mail/")
210            ;; SVR4 and recent BSD are said to use this.
211            ;; Rather than trying to know precisely which systems use it,
212            ;; let's assume this dir is never used for anything else.
213            ((file-exists-p "/var/mail")
214             "/var/mail/")
215            ((memq system-type '(dgux hpux usg-unix-v unisoft-unix rtu irix))
216             "/usr/mail/")
217            ((memq system-type '(linux))
218             "/var/spool/mail/")
219            (t "/usr/spool/mail/")))
220
221     (funcall
222      l 'sendmail-program
223      (cond
224       ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
225       ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
226       ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
227       (t "fakemail")))          ;In ../etc, to interface to /bin/mail.
228
229     (funcall
230      l 'remote-shell-program
231      (cond
232       ;; Some systems use rsh for the remote shell; others use that
233       ;; name for the restricted shell and use remsh for the remote
234       ;; shell.  Let's try to guess based on what we actually find
235       ;; out there.  The restricted shell is almost certainly in
236       ;; /bin or /usr/bin, so it's probably safe to assume that an
237       ;; rsh found elsewhere is the remote shell program.  The
238       ;; converse is not true: /usr/bin/rsh could be either one, so
239       ;; check that last.
240       ((file-exists-p "/usr/ucb/remsh") "/usr/ucb/remsh")
241       ((file-exists-p "/usr/bsd/remsh") "/usr/bsd/remsh")
242       ((file-exists-p "/bin/remsh") "/bin/remsh")
243       ((file-exists-p "/usr/bin/remsh") "/usr/bin/remsh")
244       ((file-exists-p "/usr/local/bin/remsh") "/usr/local/bin/remsh")
245       ((file-exists-p "/usr/ucb/rsh") "/usr/ucb/rsh")
246       ((file-exists-p "/usr/bsd/rsh") "/usr/bsd/rsh")
247       ((file-exists-p "/usr/local/bin/rsh") "/usr/local/bin/rsh")
248       ((file-exists-p "/usr/bin/rcmd") "/usr/bin/rcmd")
249       ((file-exists-p "/bin/rcmd") "/bin/rcmd")
250       ((file-exists-p "/bin/rsh") "/bin/rsh")
251       ((file-exists-p "/usr/bin/rsh") "/usr/bin/rsh")
252       (t "rsh")))
253
254     (funcall
255      l 'manual-program
256      ;; Solaris 2 has both of these files; prefer /usr/ucb/man
257      ;; because the other has nonstandard argument conventions.
258      (if (file-exists-p "/usr/ucb/man")
259          "/usr/ucb/man" "/usr/bin/man")))
260 )
261
262 (if (running-temacs-p)
263     (initialize-xemacs-paths))
264
265 ;;; paths.el ends here