~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/3rdparty/qtcsh/config/sol22

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * config.h -- configure various defines for tcsh
 
3
 *
 
4
 * All source files should #include this FIRST.
 
5
 *
 
6
 * Edit this to match your system type.
 
7
 */
 
8
 
 
9
#ifndef _h_config
 
10
#define _h_config
 
11
/****************** System dependant compilation flags ****************/
 
12
/*
 
13
 * POSIX        This system supports IEEE Std 1003.1-1988 (POSIX).
 
14
 */
 
15
#define POSIX
 
16
 
 
17
/*
 
18
 * POSIXJOBS    This system supports the optional IEEE Std 1003.1-1988 (POSIX)
 
19
 *              job control facilities.
 
20
 */
 
21
#define POSIXJOBS
 
22
 
 
23
/*
 
24
 * POSIXSIGS    Use the POSIX signal facilities to emulate BSD signals.
 
25
 */
 
26
#undef POSIXSIGS
 
27
 
 
28
/*
 
29
 * VFORK        This machine has a vfork().  
 
30
 *              It used to be that for job control to work, this define
 
31
 *              was mandatory. This is not the case any more.
 
32
 *              If you think you still need it, but you don't have vfork, 
 
33
 *              define this anyway and then do #define vfork fork.  
 
34
 *              I do this anyway on a Sun because of yellow pages brain damage,
 
35
 *              [should not be needed under 4.1]
 
36
 *              and on the iris4d cause SGI's fork is sufficiently "virtual" 
 
37
 *              that vfork isn't necessary.  (Besides, SGI's vfork is weird).
 
38
 *              Note that some machines eg. rs6000 have a vfork, but not
 
39
 *              with the berkeley semantics, so we cannot use it there either.
 
40
 */
 
41
#undef VFORK
 
42
 
 
43
/*
 
44
 * BSDJOBS      You have BSD-style job control (both process groups and
 
45
 *              a tty that deals correctly
 
46
 */
 
47
#define BSDJOBS
 
48
 
 
49
/*
 
50
 * BSDSIGS      You have 4.2-style signals, rather than USG style.
 
51
 *              Note: POSIX systems should not define this unless they
 
52
 *              have sigvec() and friends (ie: 4.3BSD-RENO, HP-UX).
 
53
 */
 
54
#undef BSDSIGS
 
55
 
 
56
/*
 
57
 * BSDTIMES     You have BSD-style process time stuff (like rusage)
 
58
 *              This may or may not be true.  For example, Apple Unix
 
59
 *              (OREO) has BSDJOBS and BSDSIGS but not BSDTIMES.
 
60
 */
 
61
#undef BSDTIMES
 
62
 
 
63
/*
 
64
 * BSDLIMIT     You have BSD-style resource limit stuff (getrlimit/setrlimit)
 
65
 */
 
66
#define BSDLIMIT
 
67
 
 
68
/*
 
69
 * BSDNICE      Your system uses setpriority() instead of nice, to
 
70
 *              change a processes scheduling priority
 
71
 */
 
72
#undef BSDNICE
 
73
 
 
74
/*
 
75
 * TERMIO       You have struct termio instead of struct sgttyb.
 
76
 *              This is usually the case for SYSV systems, where
 
77
 *              BSD uses sgttyb. POSIX systems should define this
 
78
 *              anyway, even though they use struct termios.
 
79
 */
 
80
#define TERMIO
 
81
 
 
82
/*
 
83
 * SYSVREL      Your machine is SYSV based (HPUX, A/UX)
 
84
 *              NOTE: don't do this if you are on a Pyramid -- tcsh is
 
85
 *              built in a BSD universe.
 
86
 *              Set SYSVREL to 1, 2, or 3, depending the version of System V
 
87
 *              you are running. Or set it to 0 if you are not SYSV based
 
88
 */
 
89
#define SYSVREL 4
 
90
 
 
91
/*
 
92
 * YPBUGS       Work around Sun YP bugs that cause expansion of ~username
 
93
 *              to send command output to /dev/null
 
94
 */
 
95
#undef YPBUGS
 
96
 
 
97
/*
 
98
 * SIGVOID      Define this if your signal handlers return void.  On older
 
99
 *              systems, signal returns int, but on newer ones, it returns void.
 
100
 */
 
101
#define SIGVOID 
 
102
 
 
103
/*
 
104
 * HAVEDUP2     Define this if your system supports dup2().
 
105
 */
 
106
#define HAVEDUP2
 
107
 
 
108
/*
 
109
 * HAVEUTMPX    Define if you have extended utmp (utmpx).
 
110
 *              (common for svr4 systems)
 
111
 */
 
112
#define HAVEUTMPX
 
113
 
 
114
/*
 
115
 * UTHOST       Does the utmp file have a host field?
 
116
 */
 
117
#ifdef HAVEUTMPX
 
118
# define UTHOST
 
119
#else
 
120
# undef UTHOST
 
121
#endif /* HAVEUTMPX */
 
122
 
 
123
/*
 
124
 * DIRENT       Your system has <dirent.h> instead of <sys/dir.h>
 
125
 */
 
126
#define DIRENT
 
127
 
 
128
/*
 
129
 * ECHO_STYLE   Optionally change the behavior of the builtin echo
 
130
 *              BOTH_ECHO: Support both bsd options (-n) and sysv escapes (\nnn)
 
131
 *              BSD_ECHO:  Support only -n
 
132
 *              SYSV_ECHO: Support only sysv escapes (\nnn)
 
133
 *              NONE_ECHO: Pure echo.
 
134
 */
 
135
#define ECHO_STYLE BSD_ECHO     /* BSD options only */
 
136
 
 
137
/****************** local defines *********************/
 
138
#ifndef BSDTIMES
 
139
# define NEEDgethostname
 
140
#endif
 
141
/*
 
142
 * Shadow passwd file
 
143
 */
 
144
#define PW_SHADOW
 
145
 
 
146
#define SOLARIS2 22
 
147
 
 
148
/*
 
149
 * lookupname/namei ignores tailing '/' on files
 
150
 */
 
151
#define NAMEI_BUG
 
152
 
 
153
/****************** configurable hacks ****************/
 
154
/* have been moved to config_f.h */
 
155
#include "config_f.h"
 
156
 
 
157
#endif /* _h_config */