Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=tcIrh+aV; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=eDEpSE5g Received: by mail.netbsd.org (Postfix, from userid 605) id 0465A84F90; Wed, 15 May 2024 14:06:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715782002; bh=u9hTM0gcDURxKXWfELVQaDPrrAhH87QGs9VjBDb/e8w=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=tcIrh+aV4wwHbpJw31BMC315Vwyl2ST71PHHpn7YFT8RAdbvxQWSSTK0pyvcZREZZ jPIQ54X5aBfGE2UnHTuYVWgiDV5dR9mv/AaMIMEu1b5OxateiGb/rbkZ4Nz6hyubjj f40lelEUZDicpglnwvDV/HWiQerREHTdDVF61Sqo= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E835B84F41 for ; Wed, 15 May 2024 14:06:40 +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 B9K-0MLPwrTa for ; Wed, 15 May 2024 14:06:40 +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 3192684D24 for ; Wed, 15 May 2024 14:06:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715782000; bh=u9hTM0gcDURxKXWfELVQaDPrrAhH87QGs9VjBDb/e8w=; h=Date:From:Subject:To:Reply-To; b=eDEpSE5gl/DyWYMCM5VJ2M3biH93OeB72ftfq3FO4YOLwLaRJhKLOf1loUxlnZCWd CiMEUTsWrULwl5jmtOzt7elBeL0mPNRtvLaDsGYhxKz4bTZBcI39SSgBtnhlnfKdJE TFP5XmTtuiFUaCgU6nLtqqT/ojMVoIItobJ4yTb8= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 29814FA2C; Wed, 15 May 2024 14:06:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171578200044110" MIME-Version: 1.0 Date: Wed, 15 May 2024 14:06:40 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/misc/rhash To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240515140640.29814FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171578200044110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed May 15 14:06:40 UTC 2024 Modified Files: pkgsrc/misc/rhash: Makefile Log Message: openssl: Fix build on Linux, pointed out by tnn To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 pkgsrc/misc/rhash/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171578200044110 Content-Disposition: inline Content-Length: 955 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/misc/rhash/Makefile diff -u pkgsrc/misc/rhash/Makefile:1.23 pkgsrc/misc/rhash/Makefile:1.24 --- pkgsrc/misc/rhash/Makefile:1.23 Tue May 14 14:37:47 2024 +++ pkgsrc/misc/rhash/Makefile Wed May 15 14:06:39 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2024/05/14 14:37:47 nia Exp $ +# $NetBSD: Makefile,v 1.24 2024/05/15 14:06:39 nia Exp $ DISTNAME= rhash-1.4.4 PKGREVISION= 2 @@ -24,6 +24,8 @@ CONFIGURE_ARGS+= --enable-openssl CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR} CONFIGURE_ARGS+= --prefix=${PREFIX} CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --extra-cflags=-I${BUILDLINK_PREFIX.openssl}/include +CONFIGURE_ARGS+= --extra-ldflags=-L${BUILDLINK_PREFIX.openssl}/lib\ ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.openssl}/lib\ ${LDFLAGS:Q} INSTALL_TARGET= build-install-binary install-man INSTALL_TARGET+= install-pkg-config install-lib-shared INSTALL_TARGET+= install-lib-headers --_----------=_171578200044110--