From owner-svn-ports-all@freebsd.org Mon Feb 1 19:47:32 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8B01FA976ED; Mon, 1 Feb 2016 19:47:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4010D7E5; Mon, 1 Feb 2016 19:47:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u11JlVkn002088; Mon, 1 Feb 2016 19:47:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u11JlVhc002086; Mon, 1 Feb 2016 19:47:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201602011947.u11JlVhc002086@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 1 Feb 2016 19:47:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r407739 - in head/ftp/curl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Feb 2016 19:47:32 -0000 Author: sunpoet Date: Mon Feb 1 19:47:30 2016 New Revision: 407739 URL: https://svnweb.freebsd.org/changeset/ports/407739 Log: - Remove GSSAPI_*_DESC Added: head/ftp/curl/files/patch-docs-examples-getredirect.c - copied unchanged from r407738, head/ftp/curl/files/patch-docs_examples_getredirect.c Deleted: head/ftp/curl/files/patch-docs_examples_getredirect.c Modified: head/ftp/curl/Makefile Modified: head/ftp/curl/Makefile ============================================================================== --- head/ftp/curl/Makefile Mon Feb 1 19:47:26 2016 (r407738) +++ head/ftp/curl/Makefile Mon Feb 1 19:47:30 2016 (r407739) @@ -24,10 +24,6 @@ CA_BUNDLE_DESC= Install CA bundle for O CA_BUNDLE_IMPLIES= OPENSSL COOKIES_DESC= Cookies support CURL_DEBUG_DESC= cURL debug memory tracking -GSSAPI_BASE_DESC= GSSAPI support via base system (Kerberos required) -GSSAPI_HEIMDAL_DESC= GSSAPI support via security/heimdal -GSSAPI_MIT_DESC= GSSAPI support via security/krb5 -GSSAPI_NONE_DESC= Disable GSSAPI support LDAPS_IMPLIES= LDAP LIBSSH2_DESC= SCP/SFTP support via libssh2 LIBSSH2_IMPLIES= OPENSSL Copied: head/ftp/curl/files/patch-docs-examples-getredirect.c (from r407738, head/ftp/curl/files/patch-docs_examples_getredirect.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/curl/files/patch-docs-examples-getredirect.c Mon Feb 1 19:47:30 2016 (r407739, copy of r407738, head/ftp/curl/files/patch-docs_examples_getredirect.c) @@ -0,0 +1,11 @@ +--- docs/examples/getredirect.c.orig 2016-01-30 11:01:12 UTC ++++ docs/examples/getredirect.c +@@ -48,7 +48,7 @@ int main(void) + else { + res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code); + if((res == CURLE_OK) && +- ((code / 100) != 3)) { ++ ((response_code / 100) != 3)) { + /* a redirect implies a 3xx response code */ + fprintf(stderr, "Not a redirect.\n"); + }