]> git.eshelyaron.com Git - emacs.git/commitdiff
(HAVE_CRTIN): Add #undef.
authorRichard M. Stallman <rms@gnu.org>
Sat, 12 Jul 2003 21:46:43 +0000 (21:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 12 Jul 2003 21:46:43 +0000 (21:46 +0000)
(INLINE): Really inline only if OPTIMIZE is defined.

src/config.in

index 2f5723c60ca3caacf00c5254c2fc8520422d87cc..32f4e0232c408b2d6832cd8a0ef2770ceb89e409 100644 (file)
@@ -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