0
|
1 /* Synched up with: Not in FSF. */
|
|
2
|
|
3 #include "decosf1-2.h"
|
|
4 /* XEmacs change: Kim Nyberg <kny@tekla.fi> says this is needed. */
|
|
5 #ifdef emacs
|
|
6 #include <sys/stropts.h>
|
|
7 #endif
|
|
8
|
|
9 /* Supposedly gmalloc and rel_alloc will work now
|
|
10 (grunwald@foobar.cs.colorado.edu) */
|
|
11 #undef SYSTEM_MALLOC
|
|
12 #undef NO_REMAP
|
|
13
|
|
14 #define _NO_MALLOC_WARNING_
|
|
15
|
|
16 #ifdef NOT_C_CODE
|
|
17 /* This to get rid of the -X that Makefile inserts
|
|
18 * and force dynamic linking and optimization during link time.
|
|
19 * The ifndef is needed to avoid screwups during configure
|
|
20 */
|
|
21 #undef LD_SWITCH_SYSTEM
|
|
22 #define LD_SWITCH_SYSTEM
|
|
23
|
|
24 #undef LD_SWITCH_CALL_SHARED
|
|
25 #ifndef USE_GCC
|
|
26 #define LD_SWITCH_CALL_SHARED -call_shared
|
|
27 #endif /* !USE_GCC */
|
|
28
|
|
29 #undef LD_SWITCH_SHARED
|
|
30 #define LD_SWITCH_SHARED -shared
|
|
31 #endif /* NOT_C_CODE */
|