From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BCBE2139085 for ; Wed, 28 Dec 2016 08:11:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D242E0C5D; Wed, 28 Dec 2016 08:11:17 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 28D9FE0C58 for ; Wed, 28 Dec 2016 08:11:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A2D6341301 for ; Wed, 28 Dec 2016 08:11:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94C4A4A0 for ; Wed, 28 Dec 2016 08:11:12 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1482912650.f3bcb27dfa43b87e8e67f8cc23f16816630b563c.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/apache-2.eclass X-VCS-Directories: eclass/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: f3bcb27dfa43b87e8e67f8cc23f16816630b563c X-VCS-Branch: master Date: Wed, 28 Dec 2016 08:11:12 +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-Archives-Salt: 3d56121a-054f-4251-a441-292887d8d6b0 X-Archives-Hash: 3bd4fd2b34df091c6c46217256c8e1fe commit: f3bcb27dfa43b87e8e67f8cc23f16816630b563c Author: Steven Newbury snewbury org uk> AuthorDate: Wed Dec 28 08:09:18 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Dec 28 08:10:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3bcb27d apache-2.eclass: drop path to --with-ssl #516240 The apache configure script assumes that, if you passed in a path, that it's to a standalone install of openssl. It'll then go poking in that dir directly and possible add flags for building against it. This also breaks building/linking of other libraries, in both multilib and cross- compile setups. By dropping the path, we force apache to do the lookup via pkg-config. eclass/apache-2.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass index 919f82f..2a85d48 100644 --- a/eclass/apache-2.eclass +++ b/eclass/apache-2.eclass @@ -270,7 +270,7 @@ setup_modules() { fi if use ssl ; then - MY_CONF+=( --with-ssl="${EPREFIX}"/usr --enable-ssl=${mod_type} ) + MY_CONF+=( --with-ssl --enable-ssl=${mod_type} ) MY_MODS+=( ssl ) else MY_CONF+=( --without-ssl --disable-ssl )