From c378fed527474148cfa64607487acac9948a3703 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 12 Jul 2003 21:46:43 +0000 Subject: [PATCH] (HAVE_CRTIN): Add #undef. (INLINE): Really inline only if OPTIMIZE is defined. --- src/config.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config.in b/src/config.in index 2f5723c60ca..32f4e0232c4 100644 --- a/src/config.in +++ b/src/config.in @@ -803,6 +803,8 @@ Boston, MA 02111-1307, USA. */ code using `volatile' can become incorrect without. Disable with care. */ #undef volatile +/* Define if we should use crti.o and crtn.o. */ +#undef HAVE_CRTIN /* If we're using any sort of window system, define some consequences. */ #ifdef HAVE_X_WINDOWS @@ -857,7 +859,7 @@ Boston, MA 02111-1307, USA. */ /* Don't try to switch on inline handling as detected by AC_C_INLINE generally, because even if non-gcc compilers accept `inline', they may reject `extern inline'. */ -#ifdef __GNUC__ +#if defined (__GNUC__) && defined (OPTIMIZE) #define INLINE __inline__ #else #define INLINE -- 2.39.2