mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
refactor split configure.ac into files
This does not (yet) change anything. The generated configure file is the identical to previous one (except several empty lines added and deleted). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61981 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
645e441c32
commit
0664a6377a
36 changed files with 793 additions and 768 deletions
9
tool/m4/ruby_check_builtin_func.m4
Normal file
9
tool/m4/ruby_check_builtin_func.m4
Normal file
|
@ -0,0 +1,9 @@
|
|||
AC_DEFUN([RUBY_CHECK_BUILTIN_FUNC], [dnl
|
||||
AC_CACHE_CHECK([for $1], AS_TR_SH(rb_cv_builtin_$1),
|
||||
[AC_LINK_IFELSE(
|
||||
[AC_LANG_PROGRAM([int foo;], [$2;])],
|
||||
[AS_TR_SH(rb_cv_builtin_$1)=yes],
|
||||
[AS_TR_SH(rb_cv_builtin_$1)=no])])
|
||||
AS_IF([test "${AS_TR_SH(rb_cv_builtin_$1)}" != no], [
|
||||
AC_DEFINE(AS_TR_CPP(HAVE_BUILTIN_$1))
|
||||
])])dnl
|
Loading…
Add table
Add a link
Reference in a new issue