* configure.in (RSHIFT): quote to get rid of argument expansion
for autoconf 2.68. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fd17a9092f
commit
0ac2f9513f
@ -1,3 +1,8 @@
|
|||||||
|
Sat Oct 9 16:54:28 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in (RSHIFT): quote to get rid of argument expansion
|
||||||
|
for autoconf 2.68.
|
||||||
|
|
||||||
Sat Oct 9 11:00:06 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Oct 9 11:00:06 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* thread.c (thread_reset_event_flags, exec_event_hooks): ignore
|
* thread.c (thread_reset_event_flags, exec_event_hooks): ignore
|
||||||
|
@ -1475,7 +1475,7 @@ if test x"$target_cpu" = xia64; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CACHE_CHECK(whether right shift preserve sign bit, rb_cv_rshift_sign,
|
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=yes,
|
||||||
rb_cv_rshift_sign=no)])
|
rb_cv_rshift_sign=no)])
|
||||||
if test "$rb_cv_rshift_sign" = yes; then
|
if test "$rb_cv_rshift_sign" = yes; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user