1/* system description file for hpux version 8.
2
3   Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006,
4                 2007  Free Software Foundation, Inc.
5
6This file is part of GNU Emacs.
7
8GNU Emacs is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2, or (at your option)
11any later version.
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with GNU Emacs; see the file COPYING.  If not, write to
20the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21Boston, MA 02110-1301, USA.
22
23Commentary:
24
25This contains changes that were suggested "for the hp700".
26They were not needed for the 800.
27Our conjecture that they are needed for hpux version 8,
28which is what runs on the 700.  */
29
30#define HPUX8
31
32#include "hpux.h"
33
34/* dob@inel.gov says HPUX 8.07 needs this.  He was using X11R5, I think.  */
35#define LIBX11_SYSTEM -lXext
36
37#define LIB_X11_LIB -L/usr/lib/X11R5 -L/usr/lib/X11R4 -lX11
38#define C_SWITCH_X_SYSTEM -I/usr/include/X11R5 -I/usr/include/X11R4
39#define LD_SWITCH_X_DEFAULT -L/usr/lib/X11R5 -L/usr/lib/X11R4
40
41/* Don't use shared libraries.  unexec doesn't handle them.
42   Note GCC automatically passes -a archive to ld, and it has its own
43   conflicting -a.  */
44#ifdef __GNUC__
45/* No need to specify roundabout way of linking temacs.  */
46#define ORDINARY_LINK
47
48#ifdef HPUX_USE_SHLIBS
49#define LD_SWITCH_SYSTEM_TEMACS
50#else
51#define LD_SWITCH_SYSTEM_TEMACS -Xlinker -a -Xlinker archive
52#endif
53
54#else /* not __GNUC__ */
55/* Note, -a only works for hpux ld, not cc.  And "cc LD_SWITCH_SYSTEM"
56   is used in configure's $ac_link to do various autoconf checks.
57   Since we only need -a when unexec'ing, only pass in -a to
58   "ld temacs" (ghazi@caip.rutgers.edu  7/10/97).  */
59#if (defined(hp9000s700) || defined(__hp9000s700))
60#ifdef HPUX_USE_SHLIBS
61#define LD_SWITCH_SYSTEM_TEMACS -L/lib/pa1.1
62#else
63#define LD_SWITCH_SYSTEM_TEMACS -a archive -L/lib/pa1.1
64#endif
65#else /* not (defined(hp9000s700) || defined(__hp9000s700)) */
66#ifdef HPUX_USE_SHLIBS
67#define LD_SWITCH_SYSTEM_TEMACS
68#else
69#define LD_SWITCH_SYSTEM_TEMACS -a archive
70#endif
71#endif /* not (defined(hp9000s700) || defined(__hp9000s700)) */
72#endif /* not __GNUC__ */
73
74/* Some hpux 8 machines seem to have TIOCGWINSZ,
75   and none have sioctl.h, so might as well define this.  */
76#define NO_SIOCTL_H
77
78#if 0 /* autoconf should be detecting the presence or absence of
79	 random and srandom now.  */
80/* If you use X11R4 you must define this.  If you use
81   X11R5 you must comment this out */
82/* #define HAVE_RANDOM */
83#define random foo_random
84#define srandom foo_srandom
85#endif
86
87#if 0  /* This seems to be spurious.  */
88/* "X11R5" on hpux8 doesn't have this function, which is supposed to exist
89   in X11R5.  Maybe things will work if we just don't call it.  */
90#define NO_XRM_SET_DATABASE
91#endif
92
93/* Enable a special hack in XTread_socket.  */
94#define X_IO_BUG
95
96/* arch-tag: 25fafe5c-b26c-43ab-8144-1629d59207ee
97   (do not change this comment) */
98