Mercurial > emacs
changeset 5866:92d91d7479a2
Get, use, and substitute C_SWITCH_MACHINE like C_SWITCH_SYSTEM.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 09 Feb 1994 21:03:13 +0000 |
parents | 8dc616f310e8 |
children | 907e14c58c65 |
files | configure1.in |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure1.in Wed Feb 09 13:51:25 1994 +0000 +++ b/configure1.in Wed Feb 09 21:03:13 1994 +0000 @@ -1238,8 +1238,12 @@ #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 @@ #### 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(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)