diff options
| author | Adam Vandenberg | 2012-02-25 21:00:28 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-25 21:00:28 -0800 |
| commit | 200c36200da7679b9bd1384dbb5ad32266d16b91 (patch) | |
| tree | deeb472147fb6ee3c0a0f59e49f8855ef927ca72 /Library/Formula/berkeley-db.rb | |
| parent | 0568780cd067cb62ab114884e9eebdb80c1df896 (diff) | |
| download | homebrew-200c36200da7679b9bd1384dbb5ad32266d16b91.tar.bz2 | |
Don't override default -O flag.
Way back in the day, Homebrew defaulted to LLVM/-O3. A lot of stuff
failed to compile, and a lot of stuff just took forever with -O4.
We don't default this way anymore, and in fact use -Os per Apple
guidelines.
So remove these old "fixes" since they are no longer needed.
Diffstat (limited to 'Library/Formula/berkeley-db.rb')
| -rw-r--r-- | Library/Formula/berkeley-db.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/berkeley-db.rb b/Library/Formula/berkeley-db.rb index 85e3b7d9d..442b90360 100644 --- a/Library/Formula/berkeley-db.rb +++ b/Library/Formula/berkeley-db.rb @@ -1,8 +1,8 @@ require 'formula' class BerkeleyDb < Formula - url 'http://download.oracle.com/berkeley-db/db-5.3.15.tar.gz' homepage 'http://www.oracle.com/technology/products/berkeley-db/index.html' + url 'http://download.oracle.com/berkeley-db/db-5.3.15.tar.gz' md5 '5493fb5f7cc3915887c836b096f18773' def options @@ -12,7 +12,6 @@ class BerkeleyDb < Formula def install # BerkeleyDB dislikes parallel builds ENV.deparallelize - ENV.O3 # takes an hour or more with link time optimisation args = ["--disable-debug", "--prefix=#{prefix}", "--mandir=#{man}", |
