configure.in: Remove superfluous semicolon

* configure.in (RUBY_SETJMP_TYPE): Remove superfluous semicolon
  which causes a syntax error with autoconf 2.63.
  [ruby-core:67429] [Bug #10716]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-01-09 01:57:11 +00:00
Родитель c9b165578b
Коммит 787af09e4e
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Fri Jan 9 10:57:09 2015 Vit Ondruch <vondruch@redhat.com>
* configure.in (RUBY_SETJMP_TYPE): Remove superfluous semicolon
which causes a syntax error with autoconf 2.63.
[ruby-core:67429] [Bug #10716]
Fri Jan 9 07:23:32 2015 Aaron Patterson <aaron@tenderlovemaking.com> Fri Jan 9 07:23:32 2015 Aaron Patterson <aaron@tenderlovemaking.com>
* ext/psych/lib/psych/visitors/yaml_tree.rb: correctly quote non-ascii * ext/psych/lib/psych/visitors/yaml_tree.rb: correctly quote non-ascii

Просмотреть файл

@ -2306,7 +2306,7 @@ if test ${setjmp_prefix+set}; then
if test "${setjmp_prefix}" && eval test '$ac_cv_func_'${setjmp_prefix}setjmp${setjmp_suffix} = no; then if test "${setjmp_prefix}" && eval test '$ac_cv_func_'${setjmp_prefix}setjmp${setjmp_suffix} = no; then
AC_MSG_ERROR(${setjmp_prefix}setjmp${setjmp_suffix} is not available) AC_MSG_ERROR(${setjmp_prefix}setjmp${setjmp_suffix} is not available)
fi fi
elif { AS_CASE("$ac_cv_func___builtin_setjmp", [yes*], [true], [false]); }; then elif { AS_CASE("$ac_cv_func___builtin_setjmp", [yes*], [true], [false]) }; then
setjmp_cast=`expr "$ac_cv_func___builtin_setjmp" : "yes with cast (\(.*\))"` setjmp_cast=`expr "$ac_cv_func___builtin_setjmp" : "yes with cast (\(.*\))"`
setjmp_prefix=__builtin_ setjmp_prefix=__builtin_
setjmp_suffix= setjmp_suffix=