XEmacs 21.4.5 "Civil Service".
[chise/xemacs-chise.git.1] / src / s / sco5.h
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 HAVE_PTYS
41 #define PTY_ITERATION \
42    for (i = 0; ; i++)
43 #define PTY_NAME_SPRINTF \
44   sprintf (pty_name, "/dev/ptyp%d", i);
45 #define PTY_TTY_NAME_SPRINTF \
46   sprintf (pty_name, "/dev/ttyp%d", i);
47 #define FORCE_ALLOCATE_PTY_THE_OLD_FASHIONED_WAY
48
49 /* We have sockets. Always. */
50 #ifndef HAVE_SOCKETS
51 #define HAVE_SOCKETS
52 #endif
53
54 #ifndef __GNUC__
55 #define LINKER "cc -Xc"
56 #else
57 #define LINKER "gcc"
58 #endif
59
60 #define LIBS_SYSTEM "-lsocket -lPW -lgen -lcrypt -lmalloc"
61
62 #ifndef MAXPATHLEN
63 # define MAXPATHLEN PATHSIZE
64 #endif
65
66 /* This is necessary to circumvent stupidity in <X11/Xosdefs.h>.  That
67 file checks a manifest that is only defined by xmkmf.  Alternately, we
68 could #define sco and I think everything would work. rjl */
69 #define ANSICPP 1
70
71 #ifndef HAVE_GETTIMEOFDAY
72 #define HAVE_GETTIMEOFDAY
73 #endif
74
75 #undef ADDR_CORRECT
76 #define ADDR_CORRECT(x) (int)((char *)(x) - (char*)0)
77
78 #define C_SWITCH_SYSTEM "-D_NO_STATIC"
79
80 #ifndef __GNUC__
81 #define C_OPTIMIZE_SWITCH "-O3 -Xc"
82 #define C_DEBUG_SWITCH "-g -Xc"
83 #else
84 #define C_OPTIMIZE_SWITCH "-O99 -m486 -fomit-frame-pointer"
85 #define C_DEBUG_SWITCH "-g"
86 #endif
87
88 /* configure can't get this right linking fails unless -lsocket is used.  */
89 #undef HAVE_XSCREENNUMBEROFSCREEN
90 #define HAVE_XSCREENNUMBEROFSCREEN
91
92 /* We don't have -loldX, and we don't need it.  */
93 #define LIB_XMENU_LIB
94
95 /* SCO does have TIOCGWINSZ.  */
96 #undef BROKEN_TIOCGWINSZ
97 #define NEED_PTEM_H
98
99 #ifndef __GNUC__
100 #define START_FILES "pre-crt0.o /usr/ccs/lib/crt1.o /usr/ccs/lib/values-Xc.o"
101 #else
102 #define START_FILES "pre-crt0.o /usr/ccs/lib/crt1.o"
103 #endif
104 #define LIB_STANDARD "-lc"
105
106 /* Specify program for etc/fakemail to run.  Define SMAIL if you are
107    using smail, don't for MMDF.  */
108
109 #ifdef SMAIL
110 #define MAIL_PROGRAM_NAME "/usr/bin/smail -q0"
111 #else
112 #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
113 #endif
114
115 /* Tell process_send_signal to use VSUSP instead of VSWTCH.  */
116 #define PREFER_VSUSP
117
118 #define POSIX_SIGNALS
119
120 #undef PENDING_OUTPUT_COUNT
121 #define PENDING_OUTPUT_COUNT(f) ((f)->__ptr - (f)->__base)
122
123 #ifndef HAVE_VFORK
124 #define HAVE_VFORK
125 #endif
126
127 #ifdef _SCO_ELF
128 #undef COFF /* coz we're NOT */
129 #define UNEXEC "unexelf.o"
130 #endif
131
132 /* For GCC 2.7.2.3 we require the "JKJ" version of gcc.
133    Works fine with egcs and gcc 2.8.x. */
134 #define LIB_GCC "`$(LD) $(LDFLAGS) -print-libgcc-file-name`"