aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorelliottcable2009-09-22 13:18:38 -0800
committerelliottcable2009-09-22 13:18:38 -0800
commit28b8ed2773297471b8d6b15ea2ce31f49bdaaa61 (patch)
tree177276b68720a231b9aa02b3d8fcdd4aacef2078 /Library/Formula
parenteaa86409d9fe46e6236a760af849f148ecca8163 (diff)
downloadhomebrew-28b8ed2773297471b8d6b15ea2ce31f49bdaaa61.tar.bz2
I can’t find an explanation of `CFLAGS=-D_XOPEN_SOURCE=1`, so I’m removing it.
As far as I can deduce, the source of that flag is in Dan Benjamin’s article, here: http://hivelogic.com/articles/ruby-rails-leopard However, he provides no explanation for its use, and did not respond to commentors’ requests for said explanation; on top of that, I can find no useful references anywhere else. Hence, removing it.
Diffstat (limited to 'Library/Formula')
-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 f51e718e5..6a7be153c 100644
--- a/Library/Formula/ruby.rb
+++ b/Library/Formula/ruby.rb
@@ -12,8 +12,7 @@ class Ruby <Formula
"--disable-debug",
"--disable-dependency-tracking",
"--enable-shared",
- "--enable-pthread",
- "CFLAGS=-D_XOPEN_SOURCE=1"
+ "--enable-pthread"
system "make"
system "make install"
end