Disable pthread on Darwin-9.*-powerpc until Ruby Bug #193 is resolved.
http://redmine.ruby-lang.org/issues/show/193 This may break some ruby modules that require pthread, but it is better than not having a ruby binary at all.
This commit is contained in:
parent
556fa4bc85
commit
a227983f16
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: rubyversion.mk,v 1.41 2008/06/20 15:38:45 taca Exp $
|
||||
# $NetBSD: rubyversion.mk,v 1.42 2008/06/22 04:15:54 minskim Exp $
|
||||
#
|
||||
|
||||
.if !defined(_RUBYVERSION_MK)
|
||||
|
@ -171,6 +171,10 @@ RUBY_DLEXT= so
|
|||
#
|
||||
.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M1.[0-9].*)
|
||||
RUBY_USE_PTHREAD?= no
|
||||
.elif !empty(MACHINE_PLATFORM:MDarwin-9.*-powerpc)
|
||||
# Workaround for Ruby Bug #193
|
||||
# http://redmine.ruby-lang.org/issues/show/193
|
||||
RUBY_USE_PTHREAD?= no
|
||||
.else
|
||||
RUBY_USE_PTHREAD?= yes
|
||||
PTHREAD_OPTS+= native
|
||||
|
|
Loading…
Reference in a new issue