mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (RUBY_REPLACE_TYPE): enclose in quotes for multiple
type names. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31056 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c57118f757
commit
108eb9c68c
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Mar 8 09:07:03 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in (RUBY_REPLACE_TYPE): enclose in quotes for multiple
|
||||
type names.
|
||||
|
||||
Tue Mar 8 01:43:11 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* process.c (get_sc_ngroups_max): define to wrap sysconf(3).
|
||||
|
|
|
@ -642,7 +642,10 @@ fi
|
|||
|
||||
dnl RUBY_REPLACE_TYPE [typename] [default type] [macro type] [included]
|
||||
AC_DEFUN([RUBY_REPLACE_TYPE], [dnl
|
||||
AC_CHECK_TYPE([$1], [n=[$1]], [n=[$2]], [$4])
|
||||
AC_CHECK_TYPE([$1],
|
||||
[n="patsubst([$1],["],[\\"])"],
|
||||
[n="patsubst([$2],["],[\\"])"],
|
||||
[$4])
|
||||
AC_CACHE_CHECK([for convertible type of [$1]], rb_cv_[$1]_convertible, [
|
||||
u= t=
|
||||
AS_CASE(["$n "],
|
||||
|
|
Loading…
Reference in a new issue