aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorGreg Maccarone2013-10-23 09:46:43 -0700
committerAdam Vandenberg2013-10-24 07:26:19 -0700
commit458b2d965c421c7dbe4013a5a2298d9f5d48e69f (patch)
treeb15b2fa7dbc21afae6bcb3ccb75b7b483a5e7848 /Library/Formula
parentf0eb119c45051df395b71ab5d97bc5658b899bb1 (diff)
downloadhomebrew-458b2d965c421c7dbe4013a5a2298d9f5d48e69f.tar.bz2
curl: add GSSAPI support
Closes #23488. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/curl.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/curl.rb b/Library/Formula/curl.rb
index a7c39eca1..e542cdba4 100644
--- a/Library/Formula/curl.rb
+++ b/Library/Formula/curl.rb
@@ -13,6 +13,7 @@ class Curl < Formula
option 'with-ares', 'Build with C-Ares async DNS support'
option 'with-ssl', 'Build with Homebrew OpenSSL instead of the system version'
option 'with-darwinssl', 'Build with Secure Transport for SSL support'
+ option 'with-gssapi', 'Build with GSSAPI/Kerberos authentication support.'
depends_on 'pkg-config' => :build
depends_on 'libmetalink' => :optional
@@ -32,6 +33,7 @@ class Curl < Formula
args << "--enable-ares=#{Formula.factory("c-ares").opt_prefix}" if build.with? 'ares'
args << "--with-ssl=#{Formula.factory("openssl").opt_prefix}" if build.with? 'ssl'
args << "--with-darwinssl" if build.with? 'darwinssl'
+ args << "--with-gssapi" if build.with? 'gssapi'
system "./configure", *args
system "make install"