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

« back to all changes in this revision

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

  • 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
 * For OpenServer Release 5.0.x
 
5
 *
 
6
 * All source files should #include this FIRST.
 
7
 *
 
8
 * Edit this to match your system type.
 
9
 */
 
10
 
 
11
#ifndef _h_config
 
12
#define _h_config
 
13
/****************** System dependant compilation flags ****************/
 
14
/*
 
15
 * POSIX        This system supports IEEE Std 1003.1-1988 (POSIX).
 
16
 */
 
17
#define POSIX
 
18
 
 
19
/*
 
20
 * POSIXJOBS    This system supports the optional IEEE Std 1003.1-1988 (POSIX)
 
21
 *              job control facilities.
 
22
 */
 
23
#define POSIXJOBS
 
24
 
 
25
/*
 
26
 * POSIXSIGS    Use the POSIX signal facilities to emulate BSD signals.
 
27
 */
 
28
#define POSIXSIGS
 
29
 
 
30
/*
 
31
 * VFORK        This machine has a vfork().  
 
32
 *              It used to be that for job control to work, this define
 
33
 *              was mandatory. This is not the case any more.
 
34
 *              If you think you still need it, but you don't have vfork, 
 
35
 *              define this anyway and then do #define vfork fork.  
 
36
 *              I do this anyway on a Sun because of yellow pages brain damage,
 
37
 *              [should not be needed under 4.1]
 
38
 *              and on the iris4d cause SGI's fork is sufficiently "virtual" 
 
39
 *              that vfork isn't necessary.  (Besides, SGI's vfork is weird).
 
40
 *              Note that some machines eg. rs6000 have a vfork, but not
 
41
 *              with the berkeley semantics, so we cannot use it there either.
 
42
 */
 
43
#undef VFORK
 
44
 
 
45
/*
 
46
 * BSDJOBS      You have BSD-style job control (both process groups and
 
47
 *              a tty that deals correctly
 
48
 */
 
49
#define BSDJOBS
 
50
 
 
51
/*
 
52
 * BSDSIGS      You have 4.2-style signals, rather than USG style.
 
53
 *              Note: POSIX systems should not define this unless they
 
54
 *              have sigvec() and friends (ie: 4.3BSD-RENO, HP-UX).
 
55
 */
 
56
#undef BSDSIGS
 
57
 
 
58
/*
 
59
 * BSDTIMES     You have BSD-style process time stuff (like rusage)
 
60
 *              This may or may not be true.  For example, Apple Unix
 
61
 *              (OREO) has BSDJOBS and BSDSIGS but not BSDTIMES.
 
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
#undef 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 the version of System V
 
89
 *              you are running. Or set it to 0 if you are not SYSV based
 
90
 */
 
91
#define SYSVREL 3
 
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
 * UTHOST       Does the utmp file have a host field?
 
112
 */
 
113
#undef UTHOST
 
114
 
 
115
/*
 
116
 * DIRENT       Your system has <dirent.h> instead of <sys/dir.h>
 
117
 */
 
118
#define DIRENT
 
119
/****************** local defines *********************/
 
120
#define SCO
 
121
#define ODT
 
122
/****************** configurable hacks ****************/
 
123
/* have been moved to config_f.h */
 
124
#include "config_f.h"
 
125
#endif /* _h_config */