From 787af09e4e7500f5670078e9cf6b0381c14a2372 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 9 Jan 2015 01:57:11 +0000 Subject: 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 --- ChangeLog | 6 ++++++ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8ccf8e9291..2309ca26ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Jan 9 10:57:09 2015 Vit Ondruch + + * 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 * ext/psych/lib/psych/visitors/yaml_tree.rb: correctly quote non-ascii diff --git a/configure.in b/configure.in index 5ae7f69cc8..657e76cf38 100644 --- a/configure.in +++ b/configure.in @@ -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 AC_MSG_ERROR(${setjmp_prefix}setjmp${setjmp_suffix} is not available) 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_prefix=__builtin_ setjmp_suffix= -- cgit v1.2.3