#15635: Ruby 1.8.7 dumps core on 10.5 ppc ---------------------------------+------------------------------------------ Reporter: blair@macports.org | Owner: pguyot@kallisys.net Type: defect | Status: new Priority: Normal | Milestone: Port Bugs Component: ports | Version: 1.6.0 Resolution: | Keywords: ---------------------------------+------------------------------------------ Comment (by kimuraw@macports.org): The following change against ruby's Portfile disables "--enable-pthread" on 10.5 ppc Mac. I think this is not so bad to solve the problem temporally. {{{ Index: lang/ruby/Portfile =================================================================== --- lang/ruby/Portfile (revision 783) +++ lang/ruby/Portfile (working copy) @@ -74,6 +74,12 @@ configure.args-delete --enable-pthread } +platform darwin 9 powerpc { + # pthreads breaks ruby-1.8.7 on 10.5 ppc + # http://trac.macports.org/ticket/15635 + configure.args-delete --enable-pthread +} + variant tk conflicts mactk { configure.args-delete --without-tk configure.args-append --with-tk }}} -- Ticket URL: <http://trac.macports.org/ticket/15635#comment:9> MacPorts <http://www.macports.org/> Ports system for Mac OS