diff options
| author | Birger J. Nordølum | 2012-04-23 10:09:56 +0200 | 
|---|---|---|
| committer | Jack Nagel | 2012-04-24 23:41:47 -0500 | 
| commit | 4e3f40925584a4c1a8c9a53334691f554778b4ce (patch) | |
| tree | e6e622785015e17ac91e05be74c2b1fea3d58ede /Library/Formula/openssl.rb | |
| parent | fc7d3b5e76df0d6af585759cca01f8f9df3ef6ee (diff) | |
| download | homebrew-4e3f40925584a4c1a8c9a53334691f554778b4ce.tar.bz2 | |
OpenSSL 1.0.1a
[jn: no-asm is to fix compilation on 64-bit; perhaps it is not needed on
32-bit, but I didn't test it and I don't think its that important.]
Closes #11821.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/openssl.rb')
| -rw-r--r-- | Library/Formula/openssl.rb | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/openssl.rb b/Library/Formula/openssl.rb index afac94be7..7ba983922 100644 --- a/Library/Formula/openssl.rb +++ b/Library/Formula/openssl.rb @@ -1,9 +1,9 @@  require 'formula'  class Openssl < Formula -  homepage 'http://www.openssl.org' -  url 'http://www.openssl.org/source/openssl-1.0.1.tar.gz' -  sha1 'a6476d33fd38c2e7dfb438d1e3be178cc242c907' +  homepage 'http://openssl.org' +  url 'http://openssl.org/source/openssl-1.0.1a.tar.gz' +  sha256 'd3487e09d891c772cf946273a3bb0ca47479e7941be6d822274320e7cfcc361b'    keg_only :provided_by_osx,      "The OpenSSL provided by OS X is too old for some software." @@ -12,6 +12,7 @@ class Openssl < Formula      args = %W[./Configure                 --prefix=#{prefix}                 --openssldir=#{etc}/openssl +               no-asm                 zlib-dynamic                 shared               ]  | 
