comparison src/s/sunos4-0-shr.h @ 157:6b37e6ddd302 r20-3b5

Import from CVS: tag r20-3b5
author cvs
date Mon, 13 Aug 2007 09:40:41 +0200
parents 4103f0995bd7
children 0132846995bd
comparison
equal deleted inserted replaced
156:60baf0b43294 157:6b37e6ddd302
14 the header actually occupies the first few bytes of the text segment 14 the header actually occupies the first few bytes of the text segment
15 and is counted in hdr.a_text. */ 15 and is counted in hdr.a_text. */
16 16
17 /* Misleading! Actually gets loaded after crt0.o */ 17 /* Misleading! Actually gets loaded after crt0.o */
18 #undef START_FILES 18 #undef START_FILES
19 #define START_FILES pre-crt0.o 19 #define START_FILES "pre-crt0.o"
20 20
21 /* 21 /*
22 * Kludge! can't get at symbol "start" in std crt0.o 22 * Kludge! can't get at symbol "start" in std crt0.o
23 * Who the #$%&* decided to remove the __ characters! 23 * Who the #$%&* decided to remove the __ characters!
24 * Someone needs to fix this in sysdep.c with an #ifdef BROKEN_START in 24 * Someone needs to fix this in sysdep.c with an #ifdef BROKEN_START in
29 #ifndef TEXT_START 29 #ifndef TEXT_START
30 #define TEXT_START 0x2020 30 #define TEXT_START 0x2020
31 #endif 31 #endif
32 32
33 #undef UNEXEC 33 #undef UNEXEC
34 #define UNEXEC unexsunos4.o 34 #define UNEXEC "unexsunos4.o"
35 #ifndef RUN_TIME_REMAP 35 #ifndef RUN_TIME_REMAP
36 #define RUN_TIME_REMAP 36 #define RUN_TIME_REMAP
37 #endif 37 #endif
38 #define ORDINARY_LINK 38 #define ORDINARY_LINK
39 #define SUNOS4_SHARED_LIBRARIES 39 #define SUNOS4_SHARED_LIBRARIES
53 #ifndef HAVE_X11R6 53 #ifndef HAVE_X11R6
54 /* With X11R5 it was reported that linking -lXmu dynamically 54 /* With X11R5 it was reported that linking -lXmu dynamically
55 did not work. With X11R6, it does work; and since normally 55 did not work. With X11R6, it does work; and since normally
56 only the dynamic libraries are available, we should use them. */ 56 only the dynamic libraries are available, we should use them. */
57 #ifdef __GNUC__ 57 #ifdef __GNUC__
58 #define LIBXMU -Xlinker -Bstatic -lXmu -Xlinker -Bdynamic 58 #define LIBXMU "-Xlinker -Bstatic -lXmu -Xlinker -Bdynamic"
59 #else 59 #else
60 #define LIBXMU -Bstatic -lXmu -Bdynamic 60 #define LIBXMU "-Bstatic -lXmu -Bdynamic"
61 #endif 61 #endif
62 62
63 #endif /* not HAVE_X11R6 */ 63 #endif /* not HAVE_X11R6 */