From owner-svn-ports-head@freebsd.org Wed Oct 24 13:16:08 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 5128B107B961; Wed, 24 Oct 2018 13:16:08 +0000 (UTC) (envelope-from ale@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 13A1E89F20; Wed, 24 Oct 2018 13:16:08 +0000 (UTC) (envelope-from ale@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 9FB4924B2B; Wed, 24 Oct 2018 10:50:16 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9OAoGpA087848; Wed, 24 Oct 2018 10:50:16 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9OAoGXw087847; Wed, 24 Oct 2018 10:50:16 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201810241050.w9OAoGXw087847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Wed, 24 Oct 2018 10:50:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482900 - head/security/pkcs11-helper X-SVN-Group: ports-head X-SVN-Commit-Author: ale X-SVN-Commit-Paths: head/security/pkcs11-helper X-SVN-Commit-Revision: 482900 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: Wed, 24 Oct 2018 13:16:08 -0000 Author: ale Date: Wed Oct 24 10:50:16 2018 New Revision: 482900 URL: https://svnweb.freebsd.org/changeset/ports/482900 Log: Fix build with openssl 1.1.x. Modified: head/security/pkcs11-helper/Makefile Modified: head/security/pkcs11-helper/Makefile ============================================================================== --- head/security/pkcs11-helper/Makefile Wed Oct 24 10:35:53 2018 (r482899) +++ head/security/pkcs11-helper/Makefile Wed Oct 24 10:50:16 2018 (r482900) @@ -3,6 +3,7 @@ PORTNAME= pkcs11-helper PORTVERSION= 1.25.1 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= https://github.com/OpenSC/pkcs11-helper/releases/download/pkcs11-helper-${PORTVERSION}/ @@ -20,7 +21,7 @@ USES= libtool:keepla pathfix pkgconfig tar:bzip2 ssl USE_LDCONFIG= yes CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ - OPENSSL_LIBS="-L${OPENSSLLIB} -lssl" + OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto" CONFIGURE_ARGS= --disable-crypto-engine-gnutls \ --disable-crypto-engine-nss \