Mercurial > emacs
changeset 19039:193352043c50
(LIBXMU): Alternative definition if CANNOT_DUMP.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 30 Jul 1997 04:28:44 +0000 |
parents | c6bd02eeb5fa |
children | c0dc58ad2d47 |
files | src/s/sunos4shr.h |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/s/sunos4shr.h Wed Jul 30 04:24:46 1997 +0000 +++ b/src/s/sunos4shr.h Wed Jul 30 04:28:44 1997 +0000 @@ -50,10 +50,14 @@ /* With X11R5 it was reported that linking -lXmu dynamically did not work. With X11R6, it does work; and since normally only the dynamic libraries are available, we should use them. */ +#ifdef CANNOT_DUMP +#define LIBXMU -lXmu +#else #ifdef __GNUC__ #define LIBXMU -Xlinker -Bstatic -lXmu -Xlinker -Bdynamic #else #define LIBXMU -Bstatic -lXmu -Bdynamic #endif +#endif /* CANNOT_DUMP */ #endif /* not HAVE_X11R6 */