diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | src/config.in | 2 |
3 files changed, 6 insertions, 2 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * configure.in (INLINE): Do not depend on OPTIMIZE, unused. | ||
| 4 | |||
| 1 | 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * configure.in: Do not check for unconditionally included headers. | 7 | * configure.in: Do not check for unconditionally included headers. |
diff --git a/configure.in b/configure.in index cbb0298097f..575bb41023b 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -3511,7 +3511,7 @@ AH_BOTTOM([ | |||
| 3511 | /* Don't try to switch on inline handling as detected by AC_C_INLINE | 3511 | /* Don't try to switch on inline handling as detected by AC_C_INLINE |
| 3512 | generally, because even if non-gcc compilers accept `inline', they | 3512 | generally, because even if non-gcc compilers accept `inline', they |
| 3513 | may reject `extern inline'. */ | 3513 | may reject `extern inline'. */ |
| 3514 | #if defined (__GNUC__) && defined (OPTIMIZE) | 3514 | #if defined (__GNUC__) |
| 3515 | #define INLINE __inline__ | 3515 | #define INLINE __inline__ |
| 3516 | #else | 3516 | #else |
| 3517 | #define INLINE | 3517 | #define INLINE |
diff --git a/src/config.in b/src/config.in index 8d254cefff5..7d6f052fd4d 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -1076,7 +1076,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1076 | /* Don't try to switch on inline handling as detected by AC_C_INLINE | 1076 | /* Don't try to switch on inline handling as detected by AC_C_INLINE |
| 1077 | generally, because even if non-gcc compilers accept `inline', they | 1077 | generally, because even if non-gcc compilers accept `inline', they |
| 1078 | may reject `extern inline'. */ | 1078 | may reject `extern inline'. */ |
| 1079 | #if defined (__GNUC__) && defined (OPTIMIZE) | 1079 | #if defined (__GNUC__) |
| 1080 | #define INLINE __inline__ | 1080 | #define INLINE __inline__ |
| 1081 | #else | 1081 | #else |
| 1082 | #define INLINE | 1082 | #define INLINE |