From owner-svn-ports-all@freebsd.org Fri May 11 11:23:43 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1EF51FCE518; Fri, 11 May 2018 11:23:43 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C18676816D; Fri, 11 May 2018 11:23:42 +0000 (UTC) (envelope-from mandree@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A3E1D6E02; Fri, 11 May 2018 11:23:42 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4BBNgsG068615; Fri, 11 May 2018 11:23:42 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4BBNgLM068613; Fri, 11 May 2018 11:23:42 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201805111123.w4BBNgLM068613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Fri, 11 May 2018 11:23:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469628 - in head/mail/fetchmail: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: in head/mail/fetchmail: . files X-SVN-Commit-Revision: 469628 X-SVN-Commit-Repository: ports 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.25 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: Fri, 11 May 2018 11:23:43 -0000 Author: mandree Date: Fri May 11 11:23:42 2018 New Revision: 469628 URL: https://svnweb.freebsd.org/changeset/ports/469628 Log: Fix build with openssl-devel, remove BROKEN_SSL. Approved by: (blanket approval for unbreaking builds) Modified: head/mail/fetchmail/Makefile head/mail/fetchmail/files/patch-socket.c Modified: head/mail/fetchmail/Makefile ============================================================================== --- head/mail/fetchmail/Makefile Fri May 11 11:06:47 2018 (r469627) +++ head/mail/fetchmail/Makefile Fri May 11 11:23:42 2018 (r469628) @@ -14,8 +14,6 @@ COMMENT= Batch mail retrieval utility for IMAP/POP3/ET LICENSE= GPLv2 LGPL21 LICENSE_COMB= dual -BROKEN_SSL= openssl-devel - RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss USERS= ${PORTNAME} Modified: head/mail/fetchmail/files/patch-socket.c ============================================================================== --- head/mail/fetchmail/files/patch-socket.c Fri May 11 11:06:47 2018 (r469627) +++ head/mail/fetchmail/files/patch-socket.c Fri May 11 11:23:42 2018 (r469628) @@ -5,7 +5,7 @@ if(myproto) { if(!strcasecmp("ssl2",myproto)) { -#if HAVE_DECL_SSLV2_CLIENT_METHOD + 0 > 0 -+#ifndef OPENSSL_NO_SSL2 ++#if (HAVE_DECL_SSLV2_CLIENT_METHOD + 0 > 0) && !defined(OPENSSL_NO_SSL2) _ctx[sock] = SSL_CTX_new(SSLv2_client_method()); #else - report(stderr, GT_("Your operating system does not support SSLv2.\n"));