diff options
| author | Jay Soffian | 2014-03-05 21:19:39 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2014-03-13 18:59:27 +0000 |
| commit | 1ca6c8a4d1b56a27999547760bdab3adf0baf997 (patch) | |
| tree | c9025e255e438b5f45f6129c09f487d8780019bb /Library/Formula | |
| parent | dc68a590b784fa8e786103ac218026aae7769b10 (diff) | |
| download | homebrew-1ca6c8a4d1b56a27999547760bdab3adf0baf997.tar.bz2 | |
openconnect: use brewed openssl
While using openconnect on OS X 10.9.2, I noticed it was spewing the following
message every minute after connecting:
DTLS handshake failed: 1
90555:error:14102410:SSL routines:DTLS1_READ_BYTES:sslv3 alert
handshake failure:
/SourceCache/OpenSSL098/OpenSSL098-50/src/ssl/d1_pkt.c:
1037:SSL alert number 40
...
This turns out to be a bug in openssl <= 1.0.1e, per
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=701826 and
Switch to brew's openssl (1.0.1f at this moment) to pick up the bugfix.
Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/openconnect.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Formula/openconnect.rb b/Library/Formula/openconnect.rb index 4e6d0870c..15e713e1f 100644 --- a/Library/Formula/openconnect.rb +++ b/Library/Formula/openconnect.rb @@ -14,6 +14,7 @@ class Openconnect < Formula depends_on 'pkg-config' => :build depends_on 'gettext' + depends_on 'openssl' resource 'vpnc-script' do url 'http://git.infradead.org/users/dwmw2/vpnc-scripts.git/blob_plain/d2c5a77f3f0ea6ad80fc59158127d63ede81a6cb:/vpnc-script' |
