From: Richard M. Stallman Date: Sat, 12 Jul 2003 21:46:43 +0000 (+0000) Subject: (HAVE_CRTIN): Add #undef. X-Git-Tag: ttn-vms-21-2-B4~9377 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c378fed527474148cfa64607487acac9948a3703;p=emacs.git (HAVE_CRTIN): Add #undef. (INLINE): Really inline only if OPTIMIZE is defined. --- 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