aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorelliottcable2009-09-22 13:21:54 -0800
committerelliottcable2009-09-22 13:21:54 -0800
commitcec6cdd3c79dada92c426f7f601e44db80c28f19 (patch)
treec8531f11fda13780abc7cd5358160c588343d1c5
parent28b8ed2773297471b8d6b15ea2ce31f49bdaaa61 (diff)
downloadhomebrew-cec6cdd3c79dada92c426f7f601e44db80c28f19.tar.bz2
Building Ruby with pthread is bad practice.
Ruby is not natively threaded; there is absolutely no reason to build against pthread unless you intend to link against libraries themselves built with pthread (tcl/tk). More information: http://blogs.sun.com/prashant/entry/ruby_and_enable_pthreads
-rw-r--r--Library/Formula/ruby.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb
index 6a7be153c..110481e48 100644
--- a/Library/Formula/ruby.rb
+++ b/Library/Formula/ruby.rb
@@ -11,8 +11,7 @@ class Ruby <Formula
system "./configure", "--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking",
- "--enable-shared",
- "--enable-pthread"
+ "--enable-shared"
system "make"
system "make install"
end