From: Richard M. Stallman Date: Wed, 9 Feb 1994 21:03:13 +0000 (+0000) Subject: Get, use, and substitute C_SWITCH_MACHINE like C_SWITCH_SYSTEM. X-Git-Tag: emacs-19.34~9985 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e39d86ddbe1f69efdbb694cc4dff985883c0713;p=emacs.git Get, use, and substitute C_SWITCH_MACHINE like C_SWITCH_SYSTEM. --- diff --git a/configure1.in b/configure1.in index 5d292352725..d848c4d1a62 100755 --- a/configure1.in +++ b/configure1.in @@ -1238,8 +1238,12 @@ echo ' #ifndef C_SWITCH_SYSTEM #define C_SWITCH_SYSTEM #endif +#ifndef C_SWITCH_MACHINE +#define C_SWITCH_MACHINE +#endif configure___ libsrc_libs=LIBS_MACHINE LIBS_SYSTEM configure___ c_switch_system=C_SWITCH_SYSTEM +configure___ c_switch_machine=C_SWITCH_MACHINE #ifndef LIB_X11_LIB #define LIB_X11_LIB -lX11 @@ -1310,7 +1314,7 @@ LISP_FLOAT_TYPE=yes #### Add the libraries to LIBS and check for some functions. ] -DEFS="$c_switch_system $DEFS" +DEFS="$c_switch_system $c_switch_machine $DEFS" LIBS="$libsrc_libs" dnl If found, this defines HAVE_LIBDNET, which m/pmax.h checks, @@ -1387,6 +1391,7 @@ AC_SUBST(etcdir) AC_SUBST(lockdir) AC_SUBST(archlibdir) AC_SUBST(c_switch_system) +AC_SUBST(c_switch_machine) AC_SUBST(libsrc_libs) AC_SUBST(LD_SWITCH_X_SITE) AC_SUBST(LD_SWITCH_X_SITE_AUX)