diff options
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. */ | |||
| 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 |