File: i_termio.U

package info (click to toggle)
dist 1%3A3.5-36-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,056 kB
  • ctags: 199
  • sloc: sh: 5,237; perl: 4,441; cpp: 208; makefile: 69; ansic: 4
file content (134 lines) | stat: -rw-r--r-- 4,268 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
?RCS: $Id: i_termio.U 167 2013-05-08 17:58:00Z rmanfredi $
?RCS:
?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS: 
?RCS: You may redistribute only under the terms of the Artistic License,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic License; a copy of which may be found at the root
?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: $Log: i_termio.U,v $
?RCS: Revision 3.0.1.4  1994/10/29  16:20:54  ram
?RCS: patch36: call ./usg and ./Cppsym explicitly instead of relying on PATH
?RCS:
?RCS: Revision 3.0.1.3  1994/08/29  16:26:38  ram
?RCS: patch32: don't include all three I_* symbols in config.h
?RCS: patch32: (had forgotten to undo this part last time)
?RCS:
?RCS: Revision 3.0.1.2  1994/05/13  15:25:03  ram
?RCS: patch27: undone ADO's fix in previous patch since it was useless
?RCS:
?RCS: Revision 3.0.1.1  1994/05/06  15:05:23  ram
?RCS: patch23: now include all three defines in config.h (ADO)
?RCS:
?RCS: Revision 3.0  1993/08/18  12:08:44  ram
?RCS: Baseline for dist 3.0 netwide release.
?RCS:
?MAKE:i_termio i_sgtty i_termios: Trylink Cppsym Guess Setvar Findhdr Warn \
	test cat
?MAKE:	-pick add $@ %<
?S:i_termio:
?S:	This variable conditionally defines the I_TERMIO symbol, which
?S:	indicates to the C program that it should include <termio.h> rather
?S:	than <sgtty.h>.
?S:.
?S:i_termios:
?S:	This variable conditionally defines the I_TERMIOS symbol, which
?S:	indicates to the C program that the POSIX <termios.h> file is
?S:	to be included.
?S:.
?S:i_sgtty:
?S:	This variable conditionally defines the I_SGTTY symbol, which
?S:	indicates to the C program that it should include <sgtty.h> rather
?S:	than <termio.h>.
?S:.
?C:I_TERMIO:
?C:	This symbol, if defined, indicates that the program should include
?C:	<termio.h> rather than <sgtty.h>.  There are also differences in
?C:	the ioctl() calls that depend on the value of this symbol.
?C:.
?C:I_TERMIOS:
?C:	This symbol, if defined, indicates that the program should include
?C:	the POSIX termios.h rather than sgtty.h or termio.h.
?C:	There are also differences in the ioctl() calls that depend on the
?C:	value of this symbol.
?C:.
?C:I_SGTTY:
?C:	This symbol, if defined, indicates that the program should include
?C:	<sgtty.h> rather than <termio.h>.  There are also differences in
?C:	the ioctl() calls that depend on the value of this symbol.
?C:.
?H:#$i_termio I_TERMIO		/**/
?H:#$i_termios I_TERMIOS		/**/
?H:#$i_sgtty I_SGTTY		/**/
?H:.
?T:val2 val3
?LINT:set i_termio i_sgtty i_termios
: see if this is a termio system
val="$undef"
val2="$undef"
val3="$undef"
?X: Prefer POSIX-approved termios.h over all else
$cat >try.c <<EOC
#include <termios.h>
int main(void)
{
	static struct termios t;
	static int ret;
	ret |= tcsetattr(1, 2, &t);
	return ret ? 0 : 1;
}
EOC
set i_termios
eval $trylink
set tcsetattr i_termios
val3="$i_termios"

echo " "
case "$val3" in
"$define") echo "You have POSIX termios.h... good!" >&4;;
*) if ./Cppsym pyr; then
		case "`/bin/universe`" in
		ucb) if $test `./findhdr sgtty.h`; then
				val2="$define"
				echo "<sgtty.h> found." >&4
			else
				echo "System is pyramid with BSD universe."
				./warn "<sgtty.h> not found--you could have problems." 4>&4
			fi;;
		*) if $test `./findhdr termio.h`; then
				val="$define"
				echo "<termio.h> found." >&4
			else
				echo "System is pyramid with USG universe."
				./warn "<termio.h> not found--you could have problems." 4>&4
			fi;;
		esac
?X: Start with USG to avoid problems if both usg/bsd was guessed
	elif ./usg; then
		if $test `./findhdr termio.h`; then
			echo "<termio.h> found." >&4
			val="$define"
		elif $test `./findhdr sgtty.h`; then
			echo "<sgtty.h> found." >&4
			val2="$define"
		else
			./warn "Neither <termio.h> nor <sgtty.h> found--cross fingers!" 4>&4
		fi
	else
		if $test `./findhdr sgtty.h`; then
			echo "<sgtty.h> found." >&4
			val2="$define"
		elif $test `./findhdr termio.h`; then
			echo "<termio.h> found." >&4
			val="$define"
		else
			./warn "Neither <sgtty.h> nor <termio.h> found--cross fingers!" 4>&4
		fi
	fi;;
esac
set i_termio; eval $setvar
val=$val2; set i_sgtty; eval $setvar
val=$val3; set i_termios; eval $setvar