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 07979139694 for ; Wed, 22 Mar 2017 11:10:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39B3C21C08A; Wed, 22 Mar 2017 11:10:30 +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 0F0FE21C08A for ; Wed, 22 Mar 2017 11:10:29 +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 E8BB5341616 for ; Wed, 22 Mar 2017 11:10:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D09F70F5 for ; Wed, 22 Mar 2017 11:10:27 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1490181023.f045f82f1c013f0dcd54b68a05de38a23f0974a5.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/subversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/subversion/subversion-1.9.5.ebuild X-VCS-Directories: dev-vcs/subversion/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: f045f82f1c013f0dcd54b68a05de38a23f0974a5 X-VCS-Branch: master Date: Wed, 22 Mar 2017 11:10:27 +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: 3c4306cc-996b-4982-a1ce-9309bbae3616 X-Archives-Hash: 5ac398e761a4d2eae4749d98f019678a commit: f045f82f1c013f0dcd54b68a05de38a23f0974a5 Author: Michael Haubenwallner gentoo org> AuthorDate: Mon Mar 20 13:59:49 2017 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Mar 22 11:10:23 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f045f82f dev-vcs/subversion: add cygwin support Package-Manager: portage-2.3.3 Closes: https://github.com/gentoo/gentoo/pull/4256 dev-vcs/subversion/subversion-1.9.5.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-vcs/subversion/subversion-1.9.5.ebuild b/dev-vcs/subversion/subversion-1.9.5.ebuild index b3f7ebe9b88..7b0ad1c36f2 100644 --- a/dev-vcs/subversion/subversion-1.9.5.ebuild +++ b/dev-vcs/subversion/subversion-1.9.5.ebuild @@ -180,6 +180,10 @@ src_configure() { # avoid recording immediate path to sharedlibs into executables append-ldflags -Wl,-bnoipath ;; + *-cygwin*) + # no LD_PRELOAD support, no undefined symbols + myconf+=( --disable-local-library-preloading LT_LDFLAGS=-no-undefined ) + ;; *-interix*) # loader crashes on the LD_PRELOADs... myconf+=( --disable-local-library-preloading )