]> git.eshelyaron.com Git - emacs.git/commitdiff
(LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
authorRichard M. Stallman <rms@gnu.org>
Sat, 11 Oct 1997 03:57:20 +0000 (03:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 11 Oct 1997 03:57:20 +0000 (03:57 +0000)
src/s/netbsd.h

index 280b316ee5f32dfbcc4ba147aba518cbd1fa705e..37e912438d67b8d414e9545c4a9c4e916c9fb36b 100644 (file)
@@ -43,7 +43,7 @@
 
 #define GETPGRP_NO_ARG
 
-#ifndef NO_SHARED_LIBS
+#if !defined (NO_SHARED_LIBS) && ! defined (__ELF__)
 /* These definitions should work for either dynamic or static linking,
    whichever is the default for `cc -nostdlib'.  */
 #define HAVE_TEXT_START                /* No need to define `start_of_text'.  */
 #define NO_MATHERR
 
 #define AMPERSAND_FULL_NAME
+
+#ifdef __ELF__
+/* Here is how to find X Windows.  LD_SWITCH_X_SITE_AUX gives an -R option
+   says where to find X windows at run time.  We convert it to a -rpath option
+   which is what OSF1 uses.  */
+#define LD_SWITCH_SYSTEM `echo LD_SWITCH_X_SITE_AUX | sed -e 's/-R/-Wl,-rpath,/'`
+#endif /* __ELF__ */