summaryrefslogtreecommitdiffstats
path: root/m4
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2014-01-02 19:37:09 +0100
committerAllan McRae <allan@archlinux.org>2014-01-06 05:38:50 +0100
commitbad86247f74c181f9ae2e01fc71d5289f08f3bc3 (patch)
tree18018690aac02431173e6f7e8ced1ac5400ceeac /m4
parente25afaf673f8be96a05ad1ed68e3bedaf1f88585 (diff)
downloadpacman-bad86247f74c181f9ae2e01fc71d5289f08f3bc3.tar.gz
pacman-bad86247f74c181f9ae2e01fc71d5289f08f3bc3.tar.xz
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 <dan@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'm4')
-rw-r--r--m4/acinclude.m420
1 files changed, 0 insertions, 20 deletions
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]).