ruby-changes:17426
From: nobu <ko1@a...>
Date: Sat, 9 Oct 2010 16:54:53 +0900 (JST)
Subject: [ruby-changes:17426] Ruby:r29431 (trunk): * configure.in (RSHIFT): quote to get rid of argument expansion
nobu 2010-10-09 16:54:42 +0900 (Sat, 09 Oct 2010) New Revision: 29431 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29431 Log: * configure.in (RSHIFT): quote to get rid of argument expansion for autoconf 2.68. Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 29430) +++ configure.in (revision 29431) @@ -1475,7 +1475,7 @@ fi AC_CACHE_CHECK(whether right shift preserve sign bit, rb_cv_rshift_sign, - [AC_COMPILE_IFELSE(AC_LANG_BOOL_COMPILE_TRY([], [(-1==(-1>>1))]), + [AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([], [(-1==(-1>>1))])], rb_cv_rshift_sign=yes, rb_cv_rshift_sign=no)]) if test "$rb_cv_rshift_sign" = yes; then Index: ChangeLog =================================================================== --- ChangeLog (revision 29430) +++ ChangeLog (revision 29431) @@ -1,3 +1,8 @@ +Sat Oct 9 16:54:28 2010 Nobuyoshi Nakada <nobu@r...> + + * configure.in (RSHIFT): quote to get rid of argument expansion + for autoconf 2.68. + Sat Oct 9 11:00:06 2010 Nobuyoshi Nakada <nobu@r...> * thread.c (thread_reset_event_flags, exec_event_hooks): ignore -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/