From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB0881582EF for ; Sun, 23 Feb 2025 14:29:48 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id B1EB7343085 for ; Sun, 23 Feb 2025 14:29:48 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A43E8110296; Sun, 23 Feb 2025 14:29:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 98868110296 for ; Sun, 23 Feb 2025 14:29:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49CA1343085 for ; Sun, 23 Feb 2025 14:29:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D656D236B for ; Sun, 23 Feb 2025 14:29:45 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1740320952.0208308dbc69bbfed6f8e07f7bade90b24836638.heroxbd@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/serf/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/serf/serf-1.3.10.ebuild X-VCS-Directories: net-libs/serf/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: 0208308dbc69bbfed6f8e07f7bade90b24836638 X-VCS-Branch: master Date: Sun, 23 Feb 2025 14:29:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 88708fa9-9696-4879-9399-41da0814bb17 X-Archives-Hash: de3f6399c060b53718a5b4b041d20c60 commit: 0208308dbc69bbfed6f8e07f7bade90b24836638 Author: Benda Xu gentoo org> AuthorDate: Sun Feb 23 13:45:54 2025 +0000 Commit: Benda XU gentoo org> CommitDate: Sun Feb 23 14:29:12 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0208308d net-libs/serf: specify OPENSSL location explicitly. On Prefix if OPENSSL is found to be in the host directory /usr, headers in /usr/include will be put after `-I`, not desired. Explicitly specifying its location does not affect vanilla Gentoo, thus is a trivial change. I withhold a revision bump awaring that that this ebuild has stablized keywords. Signed-off-by: Benda Xu gentoo.org> net-libs/serf/serf-1.3.10.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net-libs/serf/serf-1.3.10.ebuild b/net-libs/serf/serf-1.3.10.ebuild index cfeae8cb520f..465727784a20 100644 --- a/net-libs/serf/serf-1.3.10.ebuild +++ b/net-libs/serf/serf-1.3.10.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -43,6 +43,7 @@ src_compile() { myesconsargs=( BUILD_STATIC=no PREFIX="${EPREFIX}/usr" + OPENSSL="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" # These config scripts are sent through a shell with an empty env # which breaks the SYSROOT usage in them. Set the vars inline to