Mercurial > hg > xemacs-beta
annotate src/s/hpux8.h @ 1346:01c57eb70ae9
[xemacs-hg @ 2003-03-09 02:27:27 by ben]
To: xemacs-patches@xemacs.org
i.c: Sleep between calls to check for I/O, since these calls are non-blocking.
behavior.el: Allow other keywords for forward compatibility.
cl-macs.el: Rewrite to eliminate byte-compiler warning when `return' is used
without `finally'.
cmdloop.el: Avoid truncated error messages for `end-of-file' and the like.
cmdloop.el: Avoid char-int error after syncing.
files.el: Eliminate byte-compile warnings.
printer.el: Fix line-width calculations.
#### This used to work. Someone's changes (perhaps by
Michael Sperber?) seem to have messed something up.
simple.el: Use new clear-left-side functions to avoid messages ending up on
the same line as other output.
xemacs.mak: Add override for info/ as well when separate source/build dirs.
xemacs.mak: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
Makefile.in.in: Order sections in main build process and add comments. Add
additional dependencies to try and prevent later steps from
happening when failures in earlier steps have occurred.
alloc.c: Don't arbitrarily clear Vconfigure_info_directory since it
messes up separate build/source dirs.
console.c, console.h, device-msw.c, device.c: Add accidentally omitted msprinter console and data descriptions.
print.c, console-msw.c: Add clear-left-side functionality to help keep stdio/stderr
output from separate sources on separate lines. Generalize
the different kinds of debugging output. Add dpa().
profile.c: Add better docs on Unix/Windows differences.
regex.c: Fix problems with rel-alloc compilation caused by previous patch.
emacs.c: Seg fault rather than abort on Cygwin, since gdb doesn't trap
aborts properly.
console-gtk-impl.h, console-gtk.h, console-msw.h, console-x-impl.h, console-x.h, dialog-gtk.c, dialog-x.c, event-msw.c, frame-gtk.c, frame-x.c, frameslots.h, glyphs-gtk.c, glyphs-x.c, gui-gtk.c, gui-x.c, inline.c, menubar-gtk.c, menubar-msw.c, menubar-x.c, scrollbar-gtk.c, scrollbar-x.c, ui-gtk.c: Delete popup-data object. Delete menubar_data field from frames,
since its usage is frame-specific. Delete menubar-msw.h,
gui-x.h, gui-gtk.h. Clean up handling of lwlib callback data
GCPRO'ing and add missing GCPRO recomputation in widget code.
author | ben |
---|---|
date | Sun, 09 Mar 2003 02:27:46 +0000 |
parents | 3ecd8885ac67 |
children |
rev | line source |
---|---|
428 | 1 /* Synched up with: FSF 19.31. */ |
2 | |
3 /* system description file for hpux version 8. | |
4 This contains changes that were suggested "for the hp700". | |
5 They were not needed for the 800. | |
6 Our conjecture that they are needed for hpux version 8, | |
7 which is what runs on the 700. */ | |
8 | |
9 /* XEmacs change -- suggested by hamish@bnr.ca */ | |
10 #define DONT_DEFINE_NO_REMAP /* `static' hack not needed */ | |
11 | |
12 #include "hpux.h" | |
13 | |
14 #define HPUX8 | |
15 | |
16 /* XEmacs change -- suggested by hamish@bnr.ca */ | |
17 #undef HPUX_PRE_8_0 | |
18 | |
19 /* XEmacs change -- Ugly, nasty kludge to prevent X11R4 Xos.h from | |
20 redefining struct timeval and struct timezone. */ | |
21 #define __TIMEVAL__ | |
22 | |
23 /* Don't use shared libraries. unexec doesn't handle them. | |
24 Note GCC automatically passes -a archive to ld, and it has its own | |
25 conflicting -a. */ | |
26 #ifdef __GNUC__ | |
27 /* No need to specify roundabout way of linking temacs. */ | |
28 #define ORDINARY_LINK | |
29 | |
30 #ifdef HPUX_USE_SHLIBS | |
31 #define LD_SWITCH_SYSTEM | |
32 #else | |
33 #define LD_SWITCH_SYSTEM "-Xlinker -a -Xlinker archive" | |
34 #endif | |
35 | |
36 #else /* not __GNUC__ */ | |
37 | |
38 #if (defined(hp9000s700) || defined(__hp9000s700)) | |
39 #ifdef HPUX_USE_SHLIBS | |
40 #define LD_SWITCH_SYSTEM "-L/lib/pa1.1" | |
41 #else | |
42 #define LD_SWITCH_SYSTEM "-a archive -L/lib/pa1.1" | |
43 #endif | |
44 #else /* not (defined(hp9000s700) || defined(__hp9000s700)) */ | |
45 #ifdef HPUX_USE_SHLIBS | |
46 #define LD_SWITCH_SYSTEM | |
47 #else | |
48 #define LD_SWITCH_SYSTEM "-a archive" | |
49 #endif | |
50 #endif /* not (defined(hp9000s700) || defined(__hp9000s700)) */ | |
51 | |
52 #endif /* not __GNUC__ */ | |
53 | |
54 /* XEmacs change */ | |
55 #ifndef __GNUC__ | |
56 #define C_SWITCH_SYSTEM "-Aa -D_HPUX_SOURCE" | |
57 #endif | |
58 | |
59 /* Some hpux 8 machines seem to have TIOCGWINSZ, | |
60 and none have sioctl.h, so might as well define this. */ | |
61 #define NO_SIOCTL_H | |
62 | |
63 #if 0 /* autoconf should be detecting the presence or absence of | |
64 random and srandom now. */ | |
65 /* If you use X11R4 you must define this. If you use | |
66 X11R5 you must comment this out */ | |
67 /* #define HAVE_RANDOM */ | |
68 #define random foo_random | |
69 #define srandom foo_srandom | |
70 #endif | |
71 | |
72 #if 0 /* This seems to be spurious. */ | |
73 /* "X11R5" on hpux8 doesn't have this function, which is supposed to exist | |
74 in X11R5. Maybe things will work if we just don't call it. */ | |
75 #define NO_XRM_SET_DATABASE | |
76 #endif | |
77 | |
78 /* Enable a special hack in XTread_socket. */ | |
79 /* XEmacs change: we don't use this. */ | |
80 #if 0 | |
81 #define X_IO_BUG | |
82 #endif |