aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorTobias Brunner2013-11-13 10:42:56 +0100
committerMike McQuaid2013-11-15 12:10:09 +0000
commitc79ad01397f16ab49d2fc1899efcb276877b1336 (patch)
treec942f094b3d9dd48b158fdb3cb346aa38531a70c /Library/Formula
parent119f88461509d0f99233b1fa568eba073a662740 (diff)
downloadhomebrew-c79ad01397f16ab49d2fc1899efcb276877b1336.tar.bz2
strongswan 5.1.1
Also remove libvstr dependency. Closes #24247. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/strongswan.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/Library/Formula/strongswan.rb b/Library/Formula/strongswan.rb
index de7d727c4..1e348b409 100644
--- a/Library/Formula/strongswan.rb
+++ b/Library/Formula/strongswan.rb
@@ -2,19 +2,16 @@ require 'formula'
class Strongswan < Formula
homepage 'http://www.strongswan.org'
- url 'http://download.strongswan.org/strongswan-5.1.0.tar.bz2'
- sha1 'ee7a9b078b183c138156fba695ddf870f1990748'
+ url 'http://download.strongswan.org/strongswan-5.1.1.tar.bz2'
+ sha1 'eba9c90e3e910edd18ef4f1e380e59751965258b'
option 'with-curl', 'Build with libcurl based fetcher'
option 'with-suite-b', 'Build with Suite B support (does not use the IPsec implementation provided by the kernel)'
- depends_on 'vstr'
depends_on 'openssl' if build.include? 'with-suite-b' or MacOS.version <= :leopard
depends_on 'curl' => :optional
def install
- # required for Vstr
- ENV.append 'CFLAGS', '--std=gnu89' if ENV.compiler == :clang
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
@@ -46,7 +43,6 @@ class Strongswan < Formula
--enable-tools
--enable-updown
--enable-unity
- --enable-vstr
--enable-xauth-generic
]
args << "--enable-curl" if build.with? 'curl'