From 458b2d965c421c7dbe4013a5a2298d9f5d48e69f Mon Sep 17 00:00:00 2001 From: Greg Maccarone Date: Wed, 23 Oct 2013 09:46:43 -0700 Subject: curl: add GSSAPI support Closes #23488. Signed-off-by: Adam Vandenberg --- Library/Formula/curl.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Library') 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" -- cgit v1.2.3