From owner-svn-ports-head@freebsd.org Sun Oct 28 10:42:05 2018 Return-Path: Delivered-To: svn-ports-head@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 6D6F910859A3; Sun, 28 Oct 2018 10:42:05 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 497B67BA44; Sun, 28 Oct 2018 10:42:05 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 33D8953C; Sun, 28 Oct 2018 10:42:05 +0000 (UTC) Date: Sun, 28 Oct 2018 10:42:05 +0000 From: Alexey Dokuchaev To: Palle Girgensohn Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r481884 - head/devel/xmltooling/files Message-ID: <20181028104205.GA20356@FreeBSD.org> References: <201810120837.w9C8bEP6083525@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201810120837.w9C8bEP6083525@repo.freebsd.org> User-Agent: Mutt/1.10.1 (2018-07-13) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2018 10:42:05 -0000 On Fri, Oct 12, 2018 at 08:37:14AM +0000, Palle Girgensohn wrote: > New Revision: 481884 > URL: https://svnweb.freebsd.org/changeset/ports/481884 > > Log: > Fix build problem with OpenSSL-1.1.1 > > +@@ -91,6 +91,7 @@ const BIGNUM *xmltooling::DSA_get0_privk > + #endif > + } > + > ++#if (OPENSSL_VERSION_NUMBER < 0x1010100fL) > + const BIGNUM *xmltooling::RSA_get0_n(const RSA *rsa) > + { > + #if (OPENSSL_VERSION_NUMBER < 0x10100000L) > +@@ -123,3 +124,4 @@ const BIGNUM *xmltooling::RSA_get0_d(con > + return result; These checks look strange, I think it should be 0x10100005L in both places. ./danfe