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

« back to all changes in this revision

Viewing changes to source/3rdparty/qtcsh/NECSX5/config.h

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