This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tune.H
95 lines (72 loc) · 2.48 KB
/
tune.H
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
/*
** $Id: tune.H,v 2.0 90/09/19 20:19:47 paul Rel $
**
** Getty tuneable parameters.
*/
/*
** Copyright 1989,1990 by Paul Sutcliffe Jr.
**
** Permission is hereby granted to copy, reproduce, redistribute,
** or otherwise use this software as long as: there is no monetary
** profit gained specifically from the use or reproduction or this
** software, it is not sold, rented, traded or otherwise marketed,
** and this copyright notice is included prominently in any copy
** made.
**
** The author make no claims as to the fitness or correctness of
** this software for any use whatsoever, and it is provided as is.
** Any use of this software is at the user's own risk.
*/
/*
** $Log: tune.H,v $
** Revision 2.0 90/09/19 20:19:47 paul
** Initial 2.0 release
**
*/
#define boolean int /* does your cc know about boolean? */
#define DEF_CFL (CS7 | PARENB) /* default word-len/parity */
#define DEF_CONNECT "CONNECT\s\A\r\n" /* default CONNECT string */
/* Feature selection
*/
#undef DEBUG /* include debugging code */
#define LOGUTMP /* need to update utmp/wtmp files */
#define MY_CANON /* use my own ERASE and KILL chars */
#define RCSID /* include RCS ID info in objects */
#define SETTERM /* need to set TERM in environment */
#define TELEBIT /* include Telebit FAST parsing */
#define TRYMAIL /* mail errors if CONSOLE unavailable */
#define WARNCASE /* warn user if login is UPPER case */
/* define your ERASE and KILL characters here
*/
#ifdef MY_CANON
#define MY_ERASE '\010' /* 010 = ^H, backspace */
#define MY_KILL '\025' /* 025 = ^U, nak */
#endif
/* define your Telebit FAST speed here
*/
#ifdef TELEBIT
#define TB_FAST "19200" /* CONNECT FAST == this speed */
#endif /* TELEBIT */
/* who should be notified of errors?
*/
#ifdef TRYMAIL
#define NOTIFY "root"
#endif
/* Where to find things
*/
#define CONSOLE "/dev/console" /* place to log errors */
#define DEFAULTS "/etc/default/%s" /* name of defaults file */
#define ISSUE "/etc/issue" /* name of the issue file;
say "#undef ISSUE" to turn off
the issue feature */
#define LOGIN "/bin/login" /* name of login program */
/* Special cases
*/
#undef TRS16 /* you are a Tandy 6000 or equivilent */
/* You probably shouldn't fool with these
*/
#define MAXDEF 100 /* max # lines in defaults file */
#define MAXLINE 256 /* max # chars in a line */
#define MAXID 12 /* max # chars in Gtab Id */
#define MAXLOGIN 80 /* max # chars in Gtab Login */
/* end of tune.h */