diff options
| author | Richard M. Stallman | 1993-06-03 03:45:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-03 03:45:55 +0000 |
| commit | 22ff8740acd23450f730a1770d059bdc772032ea (patch) | |
| tree | b99fbc68193b8679b54911f05304ffc52c1472fd | |
| parent | 2198e8fe650e7e0792b7a95695e7df13b89e1fa3 (diff) | |
| download | emacs-22ff8740acd23450f730a1770d059bdc772032ea.tar.gz emacs-22ff8740acd23450f730a1770d059bdc772032ea.zip | |
(C_SWITCH_SYSTEM): Fix typo in X11R5 dirname.
(random, srandom): Defined.
| -rw-r--r-- | src/s/hpux8.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/s/hpux8.h b/src/s/hpux8.h index d8b60a72af0..245b4e1dd73 100644 --- a/src/s/hpux8.h +++ b/src/s/hpux8.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #define LIBX11_SYSTEM -lXext | 12 | #define LIBX11_SYSTEM -lXext |
| 13 | 13 | ||
| 14 | #define LIB_X11_LIB -L/usr/lib/X11R5 -L/usr/lib/X11R4 -lX11 | 14 | #define LIB_X11_LIB -L/usr/lib/X11R5 -L/usr/lib/X11R4 -lX11 |
| 15 | #define C_SWITCH_SYSTEM -I/usr/lib/X11R5 -I/usr/include/X11R4 | 15 | #define C_SWITCH_SYSTEM -I/usr/include/X11R5 -I/usr/include/X11R4 |
| 16 | 16 | ||
| 17 | /* Don't use shared libraries. unexec doesn't handle them. | 17 | /* Don't use shared libraries. unexec doesn't handle them. |
| 18 | Note GCC automatically passes -a archive to ld, and it has its own | 18 | Note GCC automatically passes -a archive to ld, and it has its own |
| @@ -36,3 +36,11 @@ | |||
| 36 | /* If you use X11R4 you must define this. If you use | 36 | /* If you use X11R4 you must define this. If you use |
| 37 | X11R5 you must comment this out */ | 37 | X11R5 you must comment this out */ |
| 38 | /* #define HAVE_RANDOM */ | 38 | /* #define HAVE_RANDOM */ |
| 39 | #define random foo_random | ||
| 40 | #define srandom foo_srandom | ||
| 41 | |||
| 42 | #if 0 /* This seems to be spurious. */ | ||
| 43 | /* "X11R5" on hpux8 doesn't have this function, which is supposed to exist | ||
| 44 | in X11R5. Maybe things will work if we just don't call it. */ | ||
| 45 | #define NO_XRM_SET_DATABASE | ||
| 46 | #endif | ||