aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/s/hpux8.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/s/hpux8.h b/src/s/hpux8.h
index ff48ac59293..082730c3d8a 100644
--- a/src/s/hpux8.h
+++ b/src/s/hpux8.h
@@ -11,5 +11,14 @@
11#define LIB_X11_LIB -L/usr/lib/X11R4 -lX11 11#define LIB_X11_LIB -L/usr/lib/X11R4 -lX11
12#define C_SWITCH_SYSTEM -I/usr/include/X11R4 12#define C_SWITCH_SYSTEM -I/usr/include/X11R4
13 13
14/* Don't use shared libraries. unexec doesn't handle them. */ 14/* Don't use shared libraries. unexec doesn't handle them.
15#define LD_SWITCH_SYSTEM -a archive 15 Note GCC automatically passes -a archive to ld, and it has its own
16 conflicting -a. */
17#ifdef __GNUC__
18#define LD_SWITCH_SYSTEM -L/usr/lib/X11R4
19
20/* No need to specify roundabout way of linking temacs. */
21#define ORDINARY_LINK
22#else
23#define LD_SWITCH_SYSTEM -a archive -L/usr/lib/X11R4
24#endif