From bad86247f74c181f9ae2e01fc71d5289f08f3bc3 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 2 Jan 2014 12:37:09 -0600 Subject: Remove -fgnu89-inline from compile options This was a hack done by me in commit d8e88aa0175fd back in 2007 that is no longer necessary, given a sufficiently smart compiler and one that supports the inline keyword. Signed-off-by: Dan McGee Signed-off-by: Allan McRae --- m4/acinclude.m4 | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'm4') diff --git a/m4/acinclude.m4 b/m4/acinclude.m4 index 294507e2..15bb31e8 100644 --- a/m4/acinclude.m4 +++ b/m4/acinclude.m4 @@ -87,26 +87,6 @@ AC_DEFUN([GCC_VISIBILITY_CC],[ fi ]) -dnl GCC_GNU89_INLINE_CC -dnl checks -fgnu89-inline with the C compiler, if it exists then defines -dnl ENABLE_GNU89_INLINE_CC in both configure script and Makefiles -AC_DEFUN([GCC_GNU89_INLINE_CC],[ - AC_LANG_ASSERT(C) - if test "X$CC" != "X"; then - AC_CACHE_CHECK([for -fgnu89-inline], - gnu89_inline_cv_cc, - [ gnu89_inline_old_cflags="$CFLAGS" - CFLAGS="$CFLAGS -fgnu89-inline" - AC_TRY_COMPILE(,, gnu89_inline_cv_cc=yes, gnu89_inline_cv_cc=no) - CFLAGS="$gnu89_inline_old_cflags" - ]) - if test $gnu89_inline_cv_cc = yes; then - AC_DEFINE([ENABLE_GNU89_INLINE_CC], 1, [Define if gnu89 inlining semantics should be used.]) - fi - AM_CONDITIONAL([ENABLE_GNU89_INLINE_CC], test "x$gnu89_inline_cv_cc" = "xyes") - fi -]) - dnl CFLAGS_ADD(PARAMETER, VARIABLE) dnl Adds parameter to VARIABLE if the compiler supports it. For example, dnl CFLAGS_ADD([-Wall],[WARN_FLAGS]). -- cgit v1.2.3-24-g4f1b