diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-07-12 21:46:43 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-07-12 21:46:43 +0000 |
commit | c378fed527474148cfa64607487acac9948a3703 (patch) | |
tree | ecca4f4634dfbb5fff28055e42db58207e128153 /src | |
parent | 7a179ad4df5cd49f8fe3d0709fbc005a2ee6e280 (diff) | |
download | emacs-c378fed527474148cfa64607487acac9948a3703.tar.gz |
(HAVE_CRTIN): Add #undef.
(INLINE): Really inline only if OPTIMIZE is defined.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.in | 4 |
1 files changed, 3 insertions, 1 deletions
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 |