From b5e3d5ccfb8571501804752bfc39d17b5504fffe Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 12 Jan 2007 06:27:29 +0000 Subject: [PATCH] Since COMPILE_FOR_STATIC_LINKING is now defined in "config.h", all references must be moved after that #include. --- v7/src/microcode/liarc.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/v7/src/microcode/liarc.h b/v7/src/microcode/liarc.h index 8b46aee9a..b921a39e2 100644 --- a/v7/src/microcode/liarc.h +++ b/v7/src/microcode/liarc.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: liarc.h,v 1.26 2007/01/12 06:17:27 cph Exp $ +$Id: liarc.h,v 1.27 2007/01/12 06:27:29 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -28,12 +28,6 @@ USA. #ifndef LIARC_INCLUDED #define LIARC_INCLUDED -#ifndef COMPILE_FOR_STATIC_LINKING -#ifndef COMPILE_FOR_DYNAMIC_LOADING -#define COMPILE_FOR_DYNAMIC_LOADING -#endif -#endif - #ifndef MIT_SCHEME #define MIT_SCHEME #endif @@ -62,6 +56,12 @@ USA. # include #endif /* __STDC__ */ +#ifndef COMPILE_FOR_STATIC_LINKING +#ifndef COMPILE_FOR_DYNAMIC_LOADING +#define COMPILE_FOR_DYNAMIC_LOADING +#endif +#endif + #ifdef __GNUC__ /* Add attributes to avoid warnings from -Wall for unreferenced labels */ # define DEFLABEL(name) name : __attribute__((unused)) -- 2.25.1