# HG changeset patch # User Richard M. Stallman # Date 1058046403 0 # Node ID 06174ae76b5e0d6a2651d3e9af83223d6edbfd70 # Parent aa3263cb49871fadd2e8e49973d3943b336c74c8 (HAVE_CRTIN): Add #undef. (INLINE): Really inline only if OPTIMIZE is defined. diff -r aa3263cb4987 -r 06174ae76b5e src/config.in --- a/src/config.in Sat Jul 12 21:45:20 2003 +0000 +++ b/src/config.in Sat Jul 12 21:46:43 2003 +0000 @@ -803,6 +803,8 @@ 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 @@ /* 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