Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=WIqVsact; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=a/oFxfU2 Received: by mail.netbsd.org (Postfix, from userid 605) id 85A6184D9B; Tue, 16 Apr 2024 07:19:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713251990; bh=9dJ2vXKKGvSV89W2ksaW3th9pvCMXDkbmyGqF6DpDEg=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=WIqVsactS3anvoSJMyZDge3Qkm7h/avbxHDLt3bGGJ7fbh+4XQ2aAjJY6cpxk4MZZ uixyeBUB1mBVh8GydcwMkKGESprqwRdr1ScH+cRbY7kJLdbBvuSj6kp/pMqSRAj6fo IeRZPPYd2O88YToTlmI2F5/1mbnoGDT9bAVkIGI0= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 748B084CED for ; Tue, 16 Apr 2024 07:19:49 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 ssZLu1OW6n1A for ; Tue, 16 Apr 2024 07:19:49 +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 BCCA684D6C for ; Tue, 16 Apr 2024 07:19:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713251989; bh=9dJ2vXKKGvSV89W2ksaW3th9pvCMXDkbmyGqF6DpDEg=; h=Date:From:Subject:To:Reply-To; b=a/oFxfU2MGuukaKLS/HJBFCnAo24d6s2JVEFgsrVHiE7g+zPgQlsBEzA0Eozcmdsv AYjx1JtocMqSZfylzjnlROvVCfMwaHWNL7/wRmoCLBLDdSJythfYmSEm4/O0R9kzUq NUtHEkC+H9rIiqHV3GyYA0bxHOqzqeqiG/k1CGUk= Received: by cvs.NetBSD.org (Postfix, from userid 500) id A2225FA2C; Tue, 16 Apr 2024 07:19:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171325198863720" MIME-Version: 1.0 Date: Tue, 16 Apr 2024 07:19:48 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/openssl To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240416071948.A2225FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171325198863720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Apr 16 07:19:48 UTC 2024 Modified Files: pkgsrc/security/openssl: Makefile Log Message: openssl: use --libdir as openssl wants it Fixes pkg-config files. Closes PR 58157 by Colin Simmonds. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.298 -r1.299 pkgsrc/security/openssl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171325198863720 Content-Disposition: inline Content-Length: 999 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/openssl/Makefile diff -u pkgsrc/security/openssl/Makefile:1.298 pkgsrc/security/openssl/Makefile:1.299 --- pkgsrc/security/openssl/Makefile:1.298 Wed Apr 10 10:34:13 2024 +++ pkgsrc/security/openssl/Makefile Tue Apr 16 07:19:48 2024 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.298 2024/04/10 10:34:13 wiz Exp $ +# $NetBSD: Makefile,v 1.299 2024/04/16 07:19:48 wiz Exp $ # Remember to upload-distfiles when updating OpenSSL -- otherwise it # is not possible for users who have bootstrapped without OpenSSL # to install it and enable HTTPS fetching. DISTNAME= openssl-3.3.0 +PKGREVISION= 1 CATEGORIES= security MASTER_SITES= https://www.openssl.org/source/ @@ -22,7 +23,7 @@ TEST_TARGET= test HAS_CONFIGURE= yes CONFIGURE_SCRIPT= ./config CONFIGURE_ARGS+= --prefix=${PREFIX} -CONFIGURE_ARGS+= --libdir=${PREFIX}/lib +CONFIGURE_ARGS+= --libdir=lib CONFIGURE_ARGS+= --openssldir=${PKG_SYSCONFDIR} CONFIGURE_ARGS+= shared MAKE_FLAGS+= MANSUFFIX= --_----------=_171325198863720--