From 7f1c3dc63027112a37a552abf9167bd97ddc9996 Mon Sep 17 00:00:00 2001 From: yugui Date: Tue, 11 Nov 2008 15:21:24 +0000 Subject: merges r20210 from trunk into ruby_1_9_1. * configure.in: fix SEGV on Mac OS X 10.5.3 with pthread. a patch from Wataru Kimura in Bug #193 [ruby-core:17333]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20221 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ configure.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ced70f4b8..aa7fdbaad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Nov 11 20:49:29 2008 Kazuhiro NISHIYAMA + + * configure.in: fix SEGV on Mac OS X 10.5.3 with pthread. + a patch from Wataru Kimura in Bug #193 [ruby-core:17333]. + Tue Nov 11 23:24:23 2008 Yuki Sonoda (Yugui) * ruby.c: merges r20053 and r20067 from trunk into ruby_1_9_1. diff --git a/configure.in b/configure.in index 779d6adb2..26e8c4790 100644 --- a/configure.in +++ b/configure.in @@ -517,7 +517,7 @@ darwin*) LIBS="-lobjc $LIBS" #endif ], [ - test "x$target_cpu" = xppc && ac_cv_header_ucontext_h=no + test "x$target_cpu" = xpowerpc && ac_cv_header_ucontext_h=no ], [ AC_DEFINE(BROKEN_SETREUID, 1) -- cgit