aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2010-11-20 21:17:19 -0800
committerDan Nicolaescu2010-11-20 21:17:19 -0800
commit33726611e7b43838428dff13752535b85d5bda4f (patch)
tree4135baba7c5b975792f7a89fe745d0d1a351dd25
parent89bb5d15e647e28b07d7164a8c2afa112c6d8f7f (diff)
downloademacs-33726611e7b43838428dff13752535b85d5bda4f.tar.gz
emacs-33726611e7b43838428dff13752535b85d5bda4f.zip
* configure.in (INLINE): Do not depend on OPTIMIZE, unused.
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
-rw-r--r--src/config.in2
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6efe5b35e9e..b436d39e26a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * configure.in (INLINE): Do not depend on OPTIMIZE, unused.
4
12010-11-15 Dan Nicolaescu <dann@ics.uci.edu> 52010-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