0
|
1 /* System description file for SCO OpenServer Release 5
|
|
2 Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of GNU Emacs.
|
|
5
|
|
6 GNU Emacs is free software; you can redistribute it and/or modify
|
|
7 it under the terms of the GNU General Public License as published by
|
|
8 the Free Software Foundation; either version 2, or (at your option)
|
|
9 any later version.
|
|
10
|
|
11 GNU Emacs is distributed in the hope that it will be useful,
|
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14 GNU General Public License for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: Not in FSF. */
|
|
22
|
|
23 /* Changes for SCO OpenServer 5 by Robert Lipe, robertl@dgii.com
|
|
24 * Additions, enhancements by J. Kean Johnston, hug@netcom.com
|
|
25 */
|
|
26
|
|
27 #define DONT_DEFINE_NO_REMAP /* `static' hack not needed */
|
|
28
|
|
29 /* JKJ: Yes its a lot like SCO 4, but different enough that its easier to
|
|
30 * base it on stock SVR3 and add our stuff
|
|
31 */
|
|
32 #include "usg5-3.h"
|
|
33 #define SCO_R4
|
|
34 #define SCO_R5
|
|
35
|
|
36 #undef SYSTEM_TYPE
|
|
37 #define SYSTEM_TYPE "SCO 3.2v5"
|
|
38
|
|
39 /* SCO has ptys, but with weird names */
|
|
40 #define PTY_ITERATION \
|
|
41 for (i = 0; ; i++)
|
|
42 #define PTY_NAME_SPRINTF \
|
|
43 sprintf (pty_name, "/dev/ptyp%d", i);
|
|
44 #define PTY_TTY_NAME_SPRINTF \
|
|
45 sprintf (pty_name, "/dev/ttyp%d", i);
|
|
46
|
|
47 /* We have sockets. Always. */
|
|
48 #ifndef HAVE_SOCKETS
|
|
49 #define HAVE_SOCKETS
|
|
50 #endif
|
|
51
|
|
52 #ifndef __GNUC__
|
|
53 #define LINKER cc -Xc
|
|
54 #else
|
46
|
55 #define LINKER gcc
|
0
|
56 #endif
|
|
57
|
|
58 #undef LIBX11_SYSTEM
|
|
59 #define LIBX11_SYSTEM -lsocket
|
|
60
|
|
61 #undef LIB_X11_LIB
|
|
62 #define LIB_X11_LIB -lX11 -lgen
|
|
63
|
|
64 #define LIBS_SYSTEM -lsocket -lPW -lgen -lcrypt -lmalloc
|
|
65
|
|
66 #ifndef MAXPATHLEN
|
|
67 # define MAXPATHLEN PATHSIZE
|
|
68 #endif
|
|
69
|
|
70 /* This is necessary to circumvent stupidity in <X11/Xosdefs.h>. That
|
|
71 file checks a manifest that is only defined by xmkmf. Alternately, we
|
|
72 could #define sco and I think everything would work. rjl */
|
|
73 #define ANSICPP 1
|
|
74
|
|
75 #ifndef HAVE_GETTIMEOFDAY
|
|
76 #define HAVE_GETTIMEOFDAY
|
|
77 #endif
|
|
78
|
|
79 #undef ADDR_CORRECT
|
|
80 #define ADDR_CORRECT(x) (int)((char *)(x) - (char*)0)
|
|
81
|
|
82 #define C_SWITCH_SYSTEM -D_NO_STATIC
|
|
83
|
|
84 #ifndef __GNUC__
|
|
85 #define C_OPTIMIZE_SWITCH -O3 -Xc
|
|
86 #define C_DEBUG_SWITCH -g -Xc
|
|
87 #else
|
46
|
88 #define C_OPTIMIZE_SWITCH -O99 -m486 -fomit-frame-pointer
|
|
89 #define C_DEBUG_SWITCH -g
|
0
|
90 #endif
|
|
91
|
|
92 /* configure can't get this right linking fails unless -lsocket is used. */
|
|
93 #undef HAVE_XSCREENNUMBEROFSCREEN
|
|
94 #define HAVE_XSCREENNUMBEROFSCREEN
|
|
95
|
|
96 /* We don't have -loldX, and we don't need it. */
|
|
97 #define LIB_XMENU_LIB
|
|
98
|
|
99 /* SCO does have TIOCGWINSZ. */
|
|
100 #undef BROKEN_TIOCGWINSZ
|
|
101 #define NEED_PTEM_H
|
|
102
|
46
|
103 #ifndef __GNUC__
|
0
|
104 #define START_FILES pre-crt0.o /usr/ccs/lib/crt1.o /usr/ccs/lib/values-Xc.o
|
46
|
105 #else
|
|
106 #define START_FILES pre-crt0.o /usr/ccs/lib/crt1.o
|
|
107 #endif
|
0
|
108 #define LIB_STANDARD -lc
|
|
109
|
|
110 /* Send signals to subprocesses by "typing" signal chars at them. */
|
|
111 #define SIGNALS_VIA_CHARACTERS
|
|
112
|
|
113 /* Specify program for etc/fakemail to run. Define SMAIL if you are
|
|
114 using smail, don't for MMDF. */
|
|
115
|
|
116 #ifdef SMAIL
|
|
117 #define MAIL_PROGRAM_NAME "/usr/bin/smail -q0"
|
|
118 #else
|
|
119 #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
|
|
120 #endif
|
|
121
|
|
122 /* Tell process_send_signal to use VSUSP instead of VSWTCH. */
|
|
123 #define PREFER_VSUSP
|
|
124
|
|
125 #define POSIX_SIGNALS
|
|
126
|
|
127 #undef PENDING_OUTPUT_COUNT
|
|
128 #define PENDING_OUTPUT_COUNT(f) ((f)->__ptr - (f)->__base)
|
|
129
|
|
130 #ifndef HAVE_VFORK
|
|
131 #define HAVE_VFORK
|
|
132 #endif
|
|
133
|
|
134 #ifdef _SCO_ELF
|
|
135 # undef COFF /* coz we're NOT */
|
|
136 # define UNEXEC unexelf.o
|
|
137 # define LIB_GCC -lgcc-elf
|
|
138 #endif
|
|
139
|