source: trunk/third/tcsh/pathnames.h @ 12039

Revision 12039, 5.3 KB checked in by danw, 26 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r12038, which included commits to RCS files with non-trunk default branches.
Line 
1/* $Header: /afs/dev.mit.edu/source/repository/third/tcsh/pathnames.h,v 1.1.1.2 1998-10-03 21:09:54 danw Exp $ */
2/*
3 * pathnames.h: Location of things to find
4 */
5/*-
6 * Copyright (c) 1980, 1991 The Regents of the University of California.
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 *    notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 *    notice, this list of conditions and the following disclaimer in the
16 *    documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 *    must display the following acknowledgement:
19 *      This product includes software developed by the University of
20 *      California, Berkeley and its contributors.
21 * 4. Neither the name of the University nor the names of its contributors
22 *    may be used to endorse or promote products derived from this software
23 *    without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 */
37#ifndef _h_pathnames
38#define _h_pathnames
39
40#ifdef BSD4_4
41# include <paths.h>
42#endif
43
44#if defined(CMUCS) && !defined(_PATH_LOCAL)
45# define _PATH_LOCAL            "/usr/cs/bin"
46#endif /* CMUCS && !_PATH_LOCAL */
47
48#if defined(convex) || defined(stellar) || defined(INTEL)
49# ifndef _PATH_DOTLOGIN
50#  define _PATH_DOTLOGIN        "/etc/login"
51# endif /* !_PATH_DOTLOGIN */
52# ifndef _PATH_DOTLOGOUT
53#  define _PATH_DOTLOGOUT       "/etc/logout"
54# endif /* !_PATH_DOTLOGOUT */
55# ifndef _PATH_DOTCSHRC
56#  define _PATH_DOTCSHRC        "/etc/cshrc"
57# endif /* !_PATH_DOTCSHRC */
58#endif /* convex || stellar || INTEL */
59
60#ifdef NeXT
61# ifndef _PATH_DOTLOGIN
62#  define _PATH_DOTLOGIN        "/etc/login.std"
63# endif /* !_PATH_DOTLOGIN */
64# ifndef _PATH_DOTLOGOUT
65#  define _PATH_DOTLOGOUT       "/etc/logout.std"
66# endif /* !_PATH_DOTLOGOUT */
67# ifndef _PATH_DOTCSHRC
68#  define _PATH_DOTCSHRC        "/etc/cshrc.std"
69# endif /* !_PATH_DOTCSHRC */
70#endif /* NeXT */
71
72/* for sunos5.  */
73#if ((defined(sun) || defined(__sun__)) && (SYSVREL == 4))
74# ifndef _PATH_DOTLOGIN
75#  define _PATH_DOTLOGIN        "/etc/.login"
76# endif /* !_PATH_DOTLOGIN */
77# ifndef _PATH_DOTLOGOUT
78#  define _PATH_DOTLOGOUT       "/etc/.logout"
79# endif /* !_PATH_DOTLOGOUT */
80# ifndef _PATH_DOTCSHRC
81#  define _PATH_DOTCSHRC        "/etc/.cshrc"
82# endif /* !_PATH_DOTCSHRC */
83#endif /* sun & SVR4 */
84
85#if defined(sgi) || defined(OREO) || defined(cray) || defined(AMIX) || defined(CDC)
86# ifndef _PATH_DOTLOGIN
87#  define _PATH_DOTLOGIN        "/etc/cshrc"
88# endif /* !_PATH_DOTLOGIN */
89#endif /* sgi || OREO || cray || AMIX || CDC */
90
91#if (defined(_CRAYCOM) || defined(Lynx)) && !defined(_PATH_TCSHELL)
92# define _PATH_TCSHELL          "/bin/tcsh"             /* 1st class shell */
93#endif /* _CRAYCOM && !_PATH_TCSHELL */
94
95#if defined(_MINIX) && !defined(_PATH_TCSHELL)
96# define _PATH_TCSHELL          "/local/bin/tcsh"       /* use ram disk */
97#endif /* _MINIX && !_PATH_TCSHELL */
98
99#if defined(__EMX__) && !defined(_PATH_DEVNULL)
100# define _PATH_DEVNULL          "nul"
101#endif /* __EMX__ && !_PATH_DEVNULL */
102
103#ifndef _PATH_LOCAL
104# define _PATH_LOCAL            "/usr/local/bin"
105#endif /* !_PATH_LOCAL */
106
107#ifndef _PATH_USRBIN
108# define _PATH_USRBIN           "/usr/bin"
109#endif /* !_PATH_USRBIN */
110
111#ifndef _PATH_USRUCB
112# define _PATH_USRUCB           "/usr/ucb"
113#endif /* !_PATH_USRUCB */
114
115#ifndef _PATH_USRBSD
116# define _PATH_USRBSD           "/usr/bsd"
117#endif /* !_PATH_USRBSD */
118
119#ifndef _PATH_BIN
120# define _PATH_BIN              "/bin"
121#endif /* !_PATH_BIN */
122
123#ifndef _PATH_DOTCSHRC
124# define _PATH_DOTCSHRC         "/etc/csh.cshrc"
125#endif /* !_PATH_DOTCSHRC */
126
127#ifndef _PATH_DOTLOGIN
128# define _PATH_DOTLOGIN         "/etc/csh.login"
129#endif /* !_PATH_DOTLOGIN */
130
131#ifndef _PATH_DOTLOGOUT
132# define _PATH_DOTLOGOUT        "/etc/csh.logout"
133#endif /* !_PATH_DOTLOGOUT */
134
135#ifndef _PATH_DEVNULL
136# define _PATH_DEVNULL          "/dev/null"
137#endif /* !_PATH_DEVNULL */
138
139#ifndef _PATH_BSHELL
140# define _PATH_BSHELL           "/bin/sh"
141#endif /* !_PATH_BSHELL */
142
143#ifndef _PATH_CSHELL
144# define _PATH_CSHELL           "/bin/csh"
145#endif /* !_PATH_CSHELL */
146
147#ifndef _PATH_TCSHELL
148#  define _PATH_TCSHELL         "/usr/local/bin/tcsh"
149#endif /* !_PATH_TCSHELL */
150
151#ifndef _PATH_BIN_LOGIN
152# define _PATH_BIN_LOGIN        "/bin/login"
153#endif /* !_PATH_BIN_LOGIN */
154
155#ifndef _PATH_USRBIN_LOGIN
156# define _PATH_USRBIN_LOGIN     "/usr/bin/login"
157#endif /* !_PATH_USRBIN_LOGIN */
158
159#ifndef _PATH_BIN_NEWGRP
160# define _PATH_BIN_NEWGRP       "/bin/newgrp"
161#endif /* _PATH_BIN_NEWGRP */
162
163#ifndef _PATH_USRBIN_NEWGRP
164# define _PATH_USRBIN_NEWGRP    "/usr/bin/newgrp"
165#endif /* _PATH_USRBIN_NEWGRP */
166
167
168
169#endif /* _h_pathnames */
Note: See TracBrowser for help on using the repository browser.