summaryrefslogtreecommitdiff
path: root/tool/m4/ruby_try_cflags.m4
blob: b74718fe5e1cef7dffdc63a9f9c60c9bcf4b7723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
dnl -*- Autoconf -*-
dnl
dnl Autoconf 2.67 fails to detect `-Werror=old-style-definition` due
dnl to the old style definition of `main`.
m4_version_prereq([2.70], [], [
m4_defun([AC_LANG_PROGRAM(C)], m4_bpatsubst(m4_defn([AC_LANG_PROGRAM(C)]), [main ()], [main (void)]))
])dnl
dnl
AC_DEFUN([_RUBY_TRY_CFLAGS], [
    RUBY_WERROR_FLAG([
    CFLAGS="[$]CFLAGS $1"
    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[$4]], [[$5]])],
	[$2], [$3])
    ])dnl
])dnl
AC_DEFUN([RUBY_TRY_CFLAGS], [
    AC_MSG_CHECKING([whether ]$1[ is accepted as CFLAGS])dnl
    _RUBY_TRY_CFLAGS([$1],
	[$2
	AC_MSG_RESULT(yes)],
	[$3
	AC_MSG_RESULT(no)],
	[$4], [$5])
])dnl