diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-10 16:16:33 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-10 16:16:33 +0000 |
commit | cab10efdabf902ff3f816b240076b98b60b4e9f6 (patch) | |
tree | 395ff2d9f9a5982e7cd21b2b9748bb1b8e74919a /configure.in | |
parent | 544b3c18bdb673aa45e3be161bbae1514d2f21ea (diff) |
* configure.in: fix SEGV on Mac OS X 10.5.3 with --enable-shared.
a patch from Wataru Kimura in Bug #193 [ruby-core:17333].
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@20172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index fe63c0cdfe..05b0639581 100644 --- a/configure.in +++ b/configure.in @@ -391,7 +391,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) |