1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

* configure.in (INLINE): Do not depend on OPTIMIZE, unused.

This commit is contained in:
Dan Nicolaescu 2010-11-20 21:17:19 -08:00
parent 89bb5d15e6
commit 33726611e7
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (INLINE): Do not depend on OPTIMIZE, unused.
2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in: Do not check for unconditionally included headers.

View File

@ -3511,7 +3511,7 @@ AH_BOTTOM([
/* 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'. */
#if defined (__GNUC__) && defined (OPTIMIZE)
#if defined (__GNUC__)
#define INLINE __inline__
#else
#define INLINE

View File

@ -1076,7 +1076,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
/* 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'. */
#if defined (__GNUC__) && defined (OPTIMIZE)
#if defined (__GNUC__)
#define INLINE __inline__
#else
#define INLINE