]> git.eshelyaron.com Git - emacs.git/commitdiff
(LIBXMU): Alternative definition if CANNOT_DUMP.
authorRichard M. Stallman <rms@gnu.org>
Wed, 30 Jul 1997 04:28:44 +0000 (04:28 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 30 Jul 1997 04:28:44 +0000 (04:28 +0000)
src/s/sunos4shr.h

index d6335326bbbcd9741d5210e232348635425b2791..403492a64bb1aa2404b548176731c556b6d4b907 100644 (file)
 /* 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 */