Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4C3B6200C2F for ; Mon, 20 Feb 2017 02:00:22 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 4AC26160B65; Mon, 20 Feb 2017 01:00:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 95598160B63 for ; Mon, 20 Feb 2017 02:00:21 +0100 (CET) Received: (qmail 28828 invoked by uid 500); 20 Feb 2017 01:00:15 -0000 Mailing-List: contact dev-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@subversion.apache.org Received: (qmail 28818 invoked by uid 99); 20 Feb 2017 01:00:15 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Feb 2017 01:00:15 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id CEDA81A068F for ; Mon, 20 Feb 2017 01:00:14 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.701 X-Spam-Level: X-Spam-Status: No, score=-3.701 tagged_above=-999 required=6.31 tests=[RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, RP_MATCHES_RCVD=-2.999, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id 4vV10-Ek4tPM for ; Mon, 20 Feb 2017 01:00:12 +0000 (UTC) Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.66]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTPS id 50CD55FB5D for ; Mon, 20 Feb 2017 01:00:12 +0000 (UTC) Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 8BCE220B60 for ; Mon, 20 Feb 2017 02:00:11 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 3vRQK71f86z108r for ; Mon, 20 Feb 2017 02:00:11 +0100 (CET) Subject: Re: [PATCH] add support for zlibstat.lib in install-layout for Windows To: dev@subversion.apache.org References: From: Stefan Message-ID: <5cb06051-31d4-5bf1-8400-92c19b8c7607@posteo.de> Date: Mon, 20 Feb 2017 02:00:11 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit archived-at: Mon, 20 Feb 2017 01:00:22 -0000 On 2/1/2017 11:29, Johan Corveleyn wrote: > On Wed, Feb 1, 2017 at 3:15 AM, Stefan wrote: >> Hi, >> >> the zlib project's visual studio file creates static libraries named >> zlibstat.lib by default. Atm SVN supports this, if it determines zlib is >> in source-layout, but doesn't support it, if it determines files are in >> install-layout (the detection being based on whether the zlib-path >> contains an include-directory or not). >> >> I think it would be neat, if SVN could handle also the >> zlibstat.lib-named library (since it's a default name for the static >> zlib library on Windows). The attached patch adds that support. >> >> [[[ >> Add support for zlibstat.lib-named zlib static libraries for Windows >> builds in >> install-layout. >> >> * build/generator/gen_win_dependencies.py >> (_find_zlib): check for zlibstat.lib, when determining the zlib >> library name >> ]]] > +1 on concept (I'll let someone else review the content of the change, > but it looks sane to me). I've been "bitten" by this lack of support > before, with some amount of lost time before I figured out what was > wrong, so anything that helps these kinds of auto-detections is great. > Comitted in r1783704.