annotate src/s/osf1.h @ 27678:c370bafa362e

Define C_DEBUG_SWITCH for non-gcc.
author Dave Love <fx@gnu.org>
date Sat, 12 Feb 2000 17:03:54 +0000
parents 63fd40a97a75
children f8892a11c005
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3055
6e19d9e130c0 Changes for OSF/1:
Jim Blandy <jimb@redhat.com>
parents: 1113
diff changeset
1 #include "bsd4-3.h"
1113
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
2
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
3 /* Identify OSF1 for the m- files. */
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
4
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
5 #define OSF1
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
6
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3055
diff changeset
7 /* Define _BSD to tell the include files we're running under
1113
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
8 the BSD universe and not the SYSV universe. */
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
9
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
10 #define C_SWITCH_SYSTEM -D_BSD
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 #define LIBS_SYSTEM -lbsd
8814
4f3260a22bc8 [__alpha] (LD_SWITCH_SYSTEM): Alternate definition.
Richard M. Stallman <rms@gnu.org>
parents: 3591
diff changeset
12
11677
8406623b45c4 (GETPGRP_NO_ARG): Define.
Richard M. Stallman <rms@gnu.org>
parents: 11360
diff changeset
13 #define GETPGRP_NO_ARG
8406623b45c4 (GETPGRP_NO_ARG): Define.
Richard M. Stallman <rms@gnu.org>
parents: 11360
diff changeset
14
1113
0ffcf74fb8ad entered into RCS
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 #define SYSV_SYSTEM_DIR
11980
30b88291babf (COFF): Define.
Karl Heuer <kwzh@gnu.org>
parents: 11677
diff changeset
16
30b88291babf (COFF): Define.
Karl Heuer <kwzh@gnu.org>
parents: 11677
diff changeset
17 /* If your system uses COFF (Common Object File Format) then define the
30b88291babf (COFF): Define.
Karl Heuer <kwzh@gnu.org>
parents: 11677
diff changeset
18 preprocessor symbol "COFF". */
30b88291babf (COFF): Define.
Karl Heuer <kwzh@gnu.org>
parents: 11677
diff changeset
19
30b88291babf (COFF): Define.
Karl Heuer <kwzh@gnu.org>
parents: 11677
diff changeset
20 #define COFF
15837
f8a058024b5a (LD_SWITCH_SYSTEM): New definition.
Richard M. Stallman <rms@gnu.org>
parents: 11980
diff changeset
21
f8a058024b5a (LD_SWITCH_SYSTEM): New definition.
Richard M. Stallman <rms@gnu.org>
parents: 11980
diff changeset
22 /* Here is how to find X Windows. LD_SWITCH_X_SITE_AUX gives an -R option
f8a058024b5a (LD_SWITCH_SYSTEM): New definition.
Richard M. Stallman <rms@gnu.org>
parents: 11980
diff changeset
23 says where to find X windows at run time. We convert it to a -rpath option
f8a058024b5a (LD_SWITCH_SYSTEM): New definition.
Richard M. Stallman <rms@gnu.org>
parents: 11980
diff changeset
24 which is what OSF1 uses. */
f8a058024b5a (LD_SWITCH_SYSTEM): New definition.
Richard M. Stallman <rms@gnu.org>
parents: 11980
diff changeset
25 #define LD_SWITCH_SYSTEM `echo LD_SWITCH_X_SITE_AUX | sed -e 's/-R/-Wl,-rpath,/'`
17888
f36dbc0b1e80 (HAVE_TERMIOS): Define it.
Kenichi Handa <handa@m17n.org>
parents: 15837
diff changeset
26
f36dbc0b1e80 (HAVE_TERMIOS): Define it.
Kenichi Handa <handa@m17n.org>
parents: 15837
diff changeset
27 #define HAVE_TERMIOS
f36dbc0b1e80 (HAVE_TERMIOS): Define it.
Kenichi Handa <handa@m17n.org>
parents: 15837
diff changeset
28
19348
bdcb6282a658 (SOCKLEN_TYPE): New macro definition.
Richard M. Stallman <rms@gnu.org>
parents: 17888
diff changeset
29 /* Specify the type that the 3rd arg of `accept' points to. */
bdcb6282a658 (SOCKLEN_TYPE): New macro definition.
Richard M. Stallman <rms@gnu.org>
parents: 17888
diff changeset
30 #define SOCKLEN_TYPE int
27678
c370bafa362e Define C_DEBUG_SWITCH for non-gcc.
Dave Love <fx@gnu.org>
parents: 26090
diff changeset
31
c370bafa362e Define C_DEBUG_SWITCH for non-gcc.
Dave Love <fx@gnu.org>
parents: 26090
diff changeset
32 #ifndef __GNUC__
c370bafa362e Define C_DEBUG_SWITCH for non-gcc.
Dave Love <fx@gnu.org>
parents: 26090
diff changeset
33 /* Optimize, inaccurate debugging. */
c370bafa362e Define C_DEBUG_SWITCH for non-gcc.
Dave Love <fx@gnu.org>
parents: 26090
diff changeset
34 #define C_DEBUG_SWITCH -g3
c370bafa362e Define C_DEBUG_SWITCH for non-gcc.
Dave Love <fx@gnu.org>
parents: 26090
diff changeset
35 #endif