]> code.delx.au - gnu-emacs/commitdiff
Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE
authorRichard M. Stallman <rms@gnu.org>
Wed, 2 Oct 1996 21:44:00 +0000 (21:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 2 Oct 1996 21:44:00 +0000 (21:44 +0000)
from config.h and use them in $ac_link.

configure.in

index e1def3bd6b244381ff43a964cc6361dccefe25bb..3979482cf5af9fddb332123a48aa58a42702ad5e 100644 (file)
@@ -1212,6 +1212,17 @@ configure___ system_malloc=no
 #define C_OPTIMIZE_SWITCH -O
 #endif
 
+#ifndef LD_SWITCH_MACHINE
+#define LD_SWITCH_MACHINE
+#endif
+
+#ifndef LD_SWITCH_SYSTEM
+#define LD_SWITCH_SYSTEM
+#endif
+
+configure___ ld_switch_system=LD_SWITCH_SYSTEM
+configure___ ld_switch_maldhine=LD_SWITCH_MACHINE
+
 #ifdef THIS_IS_CONFIGURE
 
 /* Get the CFLAGS for tests in configure.  */
@@ -1248,6 +1259,8 @@ fi
 changequote([, ])dnl
 rm ${tempcname}
 
+ac_link="$ac_link $ld_switch_machine $ld_switch_system"
+
 ### Compute the unexec source name from the object name.
 UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"