changeset 51879:06174ae76b5e

(HAVE_CRTIN): Add #undef. (INLINE): Really inline only if OPTIMIZE is defined.
author Richard M. Stallman <rms@gnu.org>
date Sat, 12 Jul 2003 21:46:43 +0000
parents aa3263cb4987
children 103b6b870f97
files src/config.in
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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