Mercurial > hg > xemacs-beta
comparison src/s/hpux10.h @ 2:ac2d302a0011 r19-15b2
Import from CVS: tag r19-15b2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:46:35 +0200 |
parents | 376386a54a3c |
children | 27bc7f280385 |
comparison
equal
deleted
inserted
replaced
1:c0c6a60d29db | 2:ac2d302a0011 |
---|---|
1 /* Synched up with: FSF 19.31. */ | 1 /* Synched up with: FSF 19.31. */ |
2 | 2 |
3 /* System description file for hpux version 10. */ | 3 /* System description file for hpux version 10. */ |
4 | 4 |
5 #include "hpux9.h" | 5 #include "hpux9shr.h" |
6 | 6 |
7 /* We have to go this route, rather than hpux9's approach of renaming the | 7 /* We have to go this route, rather than hpux9's approach of renaming the |
8 functions via macros. The system's stdlib.h has fully prototyped | 8 functions via macros. The system's stdlib.h has fully prototyped |
9 declarations, which yields a conflicting definition of srand48; it | 9 declarations, which yields a conflicting definition of srand48; it |
10 tries to redeclare what was once srandom to be srand48. So we go | 10 tries to redeclare what was once srandom to be srand48. So we go |
11 with HAVE_LRAND48 being defined. */ | 11 with HAVE_LRAND48 being defined. */ |
12 #undef random /* XEmacs addition: necessary? */ | |
13 #undef srandom | 12 #undef srandom |
14 #undef srand48 | 13 #undef srand48 |
15 #undef HAVE_RANDOM | 14 #undef HAVE_RANDOM |
16 #define HPUX10 | 15 #define HPUX10 |
17 #define FORCE_ALLOCA_H | 16 #define FORCE_ALLOCA_H |
18 | 17 /* XEmacs addition */ |
19 /* XEmacs addition: New paths for hpux 10 */ | 18 #ifndef OBJECTS_SYSTEM |
20 #undef C_SWITCH_X_SYSTEM | 19 #define OBJECTS_SYSTEM strcat.o |
21 #define C_SWITCH_X_SYSTEM -I/usr/include/X11R5 -I/usr/include/Motif1.2 -I/opt/audio/include | 20 #endif |
22 #undef LD_SWITCH_X_SYSTEM | 21 /* AlainF 20-Jul-1996 -- fixes for 10.10, untested for 10.0x */ |
23 #define LD_SWITCH_X_SYSTEM -L/usr/lib/X11R5 -L/usr/lib/Motif1.2 -L/opt/audio/lib | 22 /* Fix kernel file name for 10.10 */ |
23 #undef KERNEL_FILE | |
24 #define KERNEL_FILE "/stand/vmunix" | |
25 /* The curses library seems to have a badly broken version of select(2) | |
26 that makes "poll: interrupted system call" messages to appear and | |
27 Emacs suprocesses to hang (e.g. TeX compilation w/ AUCTeX) */ | |
28 #undef LIBS_TERMCAP | |
29 #define LIBS_TERMCAP -ltermcap | |
30 /* 10.10 has Xmu in /usr/contrib/X11R5/lib */ | |
31 #ifndef HAVE_LIBXMU | |
32 #undef C_SWITCH_X_SYSTEM | |
33 #define C_SWITCH_X_SYSTEM -I/usr/include/X11R5 -I/usr/include/Motif1.2 -I/usr/contrib/include/X11R5 | |
34 #undef LD_SWITCH_X_DEFAULT | |
35 #define LD_SWITCH_X_DEFAULT -L/usr/lib/X11R5 -L/usr/lib/Motif1.2 -L/usr/contrib/lib/X11R5 | |
36 #undef LIBXMU | |
37 #define LIBXMU -lXmu | |
38 #define HAVE_LIBXMU 1 | |
39 #undef NO_EDITRES | |
40 #endif |