From fd402b2a64727fee83dbb092d6df3647a6e6f356 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 2 Oct 1996 21:44:00 +0000 Subject: [PATCH] Fetch LD_SWITCH_SYSTEM and LD_SWITCH_MACHINE from config.h and use them in $ac_link. --- configure.in | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/configure.in b/configure.in index e1def3bd6b2..3979482cf5a 100644 --- a/configure.in +++ b/configure.in @@ -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/'`" -- 2.39.2