Received: by mail.netbsd.org (Postfix, from userid 605) id 8225084DF3; Sat, 3 Mar 2018 20:51:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A333E84DCE for ; Sat, 3 Mar 2018 20:51:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id zpPrfGFw_EZw for ; Sat, 3 Mar 2018 20:51:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D6A2884D24 for ; Sat, 3 Mar 2018 20:51:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D3E3BFB40; Sat, 3 Mar 2018 20:51:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1520110268277670" MIME-Version: 1.0 Date: Sat, 3 Mar 2018 20:51:08 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/databases/libzdb To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20180303205108.D3E3BFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1520110268277670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Sat Mar 3 20:51:08 UTC 2018 Modified Files: pkgsrc/databases/libzdb: Makefile Log Message: libzdb: fix openssl configure test's usage of deprecated symbol To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/libzdb/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1520110268277670 Content-Disposition: inline Content-Length: 792 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/libzdb/Makefile diff -u pkgsrc/databases/libzdb/Makefile:1.12 pkgsrc/databases/libzdb/Makefile:1.13 --- pkgsrc/databases/libzdb/Makefile:1.12 Thu Nov 30 16:45:01 2017 +++ pkgsrc/databases/libzdb/Makefile Sat Mar 3 20:51:08 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2017/11/30 16:45:01 adam Exp $ +# $NetBSD: Makefile,v 1.13 2018/03/03 20:51:08 tnn Exp $ DISTNAME= libzdb-3.1 PKGREVISION= 8 @@ -16,6 +16,12 @@ USE_TOOLS+= gmake PKGCONFIG_OVERRIDE+= zdb.pc.in +SUBST_CLASSES+= ossl +SUBST_STAGE.ossl= pre-configure +SUBST_MESSAGE.ossl= fix openssl configure test usage of deprecated symbol +SUBST_FILES.ossl= configure +SUBST_SED.ossl= -e 's,SSL_library_init,SSL_CTX_new,g' + .include "options.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1520110268277670--