Date: Thu, 12 Apr 2012 13:31:38 GMT From: Ryan Steinmetz <zi@FreeBSD.org> To: freebsd-gnats-submit@FreeBSD.org Subject: ports/166870: [patch] add GSSAPI support to ftp/curl Message-ID: <201204121331.q3CDVcph001578@red.freebsd.org> Resent-Message-ID: <201204121340.q3CDeBNV040620@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 166870 >Category: ports >Synopsis: [patch] add GSSAPI support to ftp/curl >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Apr 12 13:40:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Ryan Steinmetz >Release: 8.3-RELEASE >Organization: Rochester Institute of Technology >Environment: >Description: - This patch adds an OPTION to enable GSSAPI for cURL. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/curl/Makefile,v retrieving revision 1.118 diff -u -r1.118 Makefile --- Makefile 3 Mar 2012 08:05:19 -0000 1.118 +++ Makefile 12 Apr 2012 13:14:48 -0000 @@ -31,7 +31,8 @@ CA_BUNDLE "Install CA bundle for OpenSSL" on \ PROXY "Proxy support" on \ RTMP "RTMP streams support" off \ - TRACKMEMORY "Enable curl memory diagnostic output" off + TRACKMEMORY "Enable curl memory diagnostic output" off \ + GSSAPI "Enable GSSAPI support" off CONFIGURE_ARGS= --disable-threaded-resolver --disable-werror \ --enable-imap --enable-pop3 --enable-rtsp --enable-smtp @@ -190,6 +191,10 @@ CONFIGURE_ARGS+= --disable-curldebug .endif +.if defined(WITH_GSSAPI) +CONFIGURE_ARGS+= --with-gssapi=/usr +.endif + .if defined(WITH_NTLM) CONFIGURE_ARGS+= --enable-ntlm .else >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204121331.q3CDVcph001578>