aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2003-07-12 21:46:43 +0000
committerRichard M. Stallman2003-07-12 21:46:43 +0000
commitc378fed527474148cfa64607487acac9948a3703 (patch)
treeecca4f4634dfbb5fff28055e42db58207e128153 /src
parent7a179ad4df5cd49f8fe3d0709fbc005a2ee6e280 (diff)
downloademacs-c378fed527474148cfa64607487acac9948a3703.tar.gz
emacs-c378fed527474148cfa64607487acac9948a3703.zip
(HAVE_CRTIN): Add #undef.
(INLINE): Really inline only if OPTIMIZE is defined.
Diffstat (limited to 'src')
-rw-r--r--src/config.in4
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. */
803 code using `volatile' can become incorrect without. Disable with care. */ 803 code using `volatile' can become incorrect without. Disable with care. */
804#undef volatile 804#undef volatile
805 805
806/* Define if we should use crti.o and crtn.o. */
807#undef HAVE_CRTIN
806 808
807/* If we're using any sort of window system, define some consequences. */ 809/* If we're using any sort of window system, define some consequences. */
808#ifdef HAVE_X_WINDOWS 810#ifdef HAVE_X_WINDOWS
@@ -857,7 +859,7 @@ Boston, MA 02111-1307, USA. */
857/* Don't try to switch on inline handling as detected by AC_C_INLINE 859/* Don't try to switch on inline handling as detected by AC_C_INLINE
858 generally, because even if non-gcc compilers accept `inline', they 860 generally, because even if non-gcc compilers accept `inline', they
859 may reject `extern inline'. */ 861 may reject `extern inline'. */
860#ifdef __GNUC__ 862#if defined (__GNUC__) && defined (OPTIMIZE)
861#define INLINE __inline__ 863#define INLINE __inline__
862#else 864#else
863#define INLINE 865#define INLINE