Kernel part of bluetooth stack ported by Dmitry Komissaroff. Very much work
[dragonfly.git] / contrib / tcsh / config_f.h
blobdaeccb6c70c005602ad569ec51cdfa9e7930eebb
1 /* $Header: /src/pub/tcsh/config_f.h,v 3.25 2002/03/08 17:36:45 christos Exp $ */
2 /*
3 * config_f.h -- configure various defines for tcsh
5 * This is included by config.h.
7 * Edit this to match your particular feelings; this is set up to the
8 * way I like it.
9 */
10 /*-
11 * Copyright (c) 1980, 1991 The Regents of the University of California.
12 * All rights reserved.
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
38 #ifndef _h_config_f
39 #define _h_config_f
42 * SHORT_STRINGS Use 16 bit characters instead of 8 bit chars
43 * This fixes up quoting problems and eases implementation
44 * of nls...
47 #define SHORT_STRINGS
50 * NLS: Use Native Language System
51 * Routines like setlocale() are needed
52 * if you don't have <locale.h>, you don't want
53 * to define this.
55 #define NLS
58 * NLS_CATALOGS:Use Native Language System catalogs for
59 * international messages.
60 * Routines like catopen() are needed
61 * if you don't have <nl_types.h>, you don't want
62 * to define this.
64 #undef NLS_CATALOGS
67 * LOGINFIRST Source ~/.login before ~/.cshrc
69 #undef LOGINFIRST
72 * VIDEFAULT Make the VI mode editor the default
74 #undef VIDEFAULT
77 * KAI use "bye" command and rename "log" to "watchlog"
79 #undef KAI
82 * TESLA drops DTR on logout. Historical note:
83 * tesla.ee.cornell.edu was a vax11/780 with a develcon
84 * switch that sometimes would not hang up.
86 #undef TESLA
89 * DOTLAST put "." last in the default path, for security reasons
91 #define DOTLAST
94 * NODOT Don't put "." in the default path, for security reasons
96 #undef NODOT
99 * AUTOLOGOUT tries to determine if it should set autologout depending
100 * on the name of the tty, and environment.
101 * Does not make sense in the modern window systems!
103 #define AUTOLOGOUT
106 * SUSPENDED Newer shells say 'Suspended' instead of 'Stopped'.
107 * Define to get the same type of messages.
109 #define SUSPENDED
112 * KANJI Ignore meta-next, and the ISO character set. Should
113 * be used with SHORT_STRINGS
116 #undef KANJI
119 * DSPMBYTE add variable "dspmbyte" and display multi-byte string at
120 * only output, when "dspmbyte" is set. Should be used with
121 * KANJI
123 #undef DSPMBYTE
126 * MBYTEDEBUG when "dspmbyte" is changed, set multi-byte checktable to
127 * variable "mbytemap".
128 * (use for multi-byte table check)
130 #undef MBYTEDEBUG
133 * NEWGRP Provide a newgrp builtin.
135 #undef NEWGRP
138 * SYSMALLOC Use the system provided version of malloc and friends.
139 * This can be much slower and no memory statistics will be
140 * provided.
142 #if defined(__MACHTEN__) || defined(PURIFY) || defined(MALLOC_TRACE) || defined(_OSD_POSIX) || defined(__MVS__)
143 # define SYSMALLOC
144 #else
145 # undef SYSMALLOC
146 #endif
149 * USE_ACCESS Use access(2) rather than stat(2) when POSIX is defined.
150 * POSIX says to use stat, but stat(2) is less accurate
151 * than access(2) for determining file access.
153 #undef USE_ACCESS
156 * REMOTEHOST Try to determine the remote host that we logged in from
157 * using first getpeername, and then the utmp file. If
158 * successful, set $REMOTEHOST to the name or address of the
159 * host
161 #define REMOTEHOST
164 * COLOR_LS_F Do you want to use builtin color ls-F ?
167 #define COLOR_LS_F
170 * COLORCAT Do you want to colorful message ?
173 #undef COLORCAT
176 * FILEC support for old style file completion
178 #define FILEC
181 * RCSID This defines if we want rcs strings in the binary or not
184 #if !defined(lint) && !defined(SABER) && !defined(__CLCC__)
185 # ifndef __GNUC__
186 # define RCSID(id) static char *rcsid = (id);
187 # else
188 # define RCSID(id) static char *rcsid(const char *a) { return rcsid(a = id); }
189 # endif /* !__GNUC__ */
190 #else
191 # define RCSID(id) /* Nothing */
192 #endif /* !lint && !SABER */
194 #endif /* _h_config_f */