mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update for autoconf 2.70 --- configure.ac | 232 +++++++++++++++++------------------ tool/m4/ruby_check_builtin_setjmp.m4 | 8 +- tool/m4/ruby_check_printf_prefix.m4 | 9 +- tool/m4/ruby_check_setjmp.m4 | 6 +- tool/m4/ruby_check_sysconf.m4 | 6 +- tool/m4/ruby_cppoutfile.m4 | 4 +- tool/m4/ruby_decl_attribute.m4 | 4 +- tool/m4/ruby_dtrace_available.m4 | 2 +- tool/m4/ruby_dtrace_postprocess.m4 | 2 +- tool/m4/ruby_mingw32.m4 | 4 +- tool/m4/ruby_stack_grow_direction.m4 | 4 +- tool/m4/ruby_try_cflags.m4 | 2 +- tool/m4/ruby_try_cxxflags.m4 | 2 +- tool/m4/ruby_try_ldflags.m4 | 2 +- 14 files changed, 143 insertions(+), 144 deletions(-) Revert AC_PROG_CC_C99 for -std=gnu99 option to gcc 4.8 --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
13 lines
402 B
Text
13 lines
402 B
Text
# -*- Autoconf -*-
|
|
AC_DEFUN([RUBY_CHECK_SYSCONF], [dnl
|
|
AC_CACHE_CHECK([whether _SC_$1 is supported], rb_cv_have_sc_[]m4_tolower($1),
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>
|
|
]],
|
|
[[_SC_$1 >= 0]])],
|
|
rb_cv_have_sc_[]m4_tolower($1)=yes,
|
|
rb_cv_have_sc_[]m4_tolower($1)=no)
|
|
])
|
|
AS_IF([test "$rb_cv_have_sc_[]m4_tolower($1)" = yes], [
|
|
AC_DEFINE(HAVE__SC_$1)
|
|
])
|
|
])dnl
|