aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-12-21 17:20:11 +0000
committerKarl Heuer1995-12-21 17:20:11 +0000
commit6b4eb5930d41f6b188935e2c3a1e6b4f324365e8 (patch)
treec5fb109affe54ec7cb6a766d0a6d23121acb62d6 /src
parent923735b79f268fae5a51d15d16a44000e7f240c5 (diff)
downloademacs-6b4eb5930d41f6b188935e2c3a1e6b4f324365e8.tar.gz
emacs-6b4eb5930d41f6b188935e2c3a1e6b4f324365e8.zip
(LIBXT_STATIC, STATIC_OPTION): Defined.
Diffstat (limited to 'src')
-rw-r--r--src/s/sol2-5.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/s/sol2-5.h b/src/s/sol2-5.h
index f3132550b8f..26986d433e6 100644
--- a/src/s/sol2-5.h
+++ b/src/s/sol2-5.h
@@ -1,3 +1,15 @@
1/* Handle Solaris 2.5. */ 1/* Handle Solaris 2.5. */
2 2
3#include "sol2-4.h" 3#include "sol2-4.h"
4
5/* Don't use the shared libraries for -lXt and -lXaw,
6 to work around a linker bug in Solaris 2.5.
7 (This also affects the other libraries used specifically for
8 the X toolkit, which may not be necessary.) */
9#define LIBXT_STATIC
10
11#ifdef __GNUC__
12#define STATIC_OPTION -static
13#else
14#define STATIC_OPTION -Bstatic
15#endif