X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BDA7D396B434 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1618859738; bh=kucTJVLRevqeGeAav6Sy881nSaHHjpi/0i5PwQKTq9s=; h=To:Subject:Date:In-Reply-To:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=F7vjlUaOHB/pyU4VFnd+rrFGSZZ6oLuffdrk/xhT3TxshXiJzC7TOUtGhbAfEDP9R VvIURSxfqj3hjiwAnJkpimi2qBvUUefieHOcAcaiOvOFRlLX+IGoXmD+c7IiEis/1S uoxR1ZhqI548CwlQ6bnedmaj5SYJUrsgB2VFyAbo= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org EC7893959E72 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=dF9gJvgsrRHCg+6Vu5DbKz12LM677oIa4e00VPZQahU=; b=NN75k0UbqXzulK5a3Ed7LiKgvXThvsY8vuAzweBXAB+tet87eO03nLvxZca5Zq/L1o 1h8Z8UWqIi1g5CHxQkqSA39fl5PvoHJJ81l1fuRr1vn1Te2p/e86DHPN5o4AY/36M4F2 OJdDGEdv5IfPBS+Q8BQ6F7VEO+YsaYbELATocY++RKz1d39jEsk66u+nDafJuU/VeOcp Qp3/unsitk2Ek0mLugYMRuZ2tKBA4OL5WwuFvaGH4XCjDpD67MY1cGOPY/cNIfb+WAgz pUHKMTpqMvSq3kQTySQ5oJ4nxoRA1lnDLf69fpMzE3FpAujawxLJ0dlIB7hUIhdTkfpZ AN7A== X-Gm-Message-State: AOAM533NcBf34bRGeDAtyFh37ksYUM/a1TwEYRCreA+Hvm1GGpYe6WTL nIgmjuxzW6vMNtXQ+UOt8HP86uilCdNom5uN X-Google-Smtp-Source: ABdhPJy20hms/Co91jeqek9KojfS4QC2NxgaHXkjNLuIq2MbhGHOvZXYc0UFqTYvoX77dyy/RzGLzA== X-Received: by 2002:a37:d2c7:: with SMTP id f190mr13945128qkj.445.1618859725477; Mon, 19 Apr 2021 12:15:25 -0700 (PDT) To: cygwin AT cygwin DOT com Subject: [PATCH 1/1] cherry-pick fix for pkg-config Date: Mon, 19 Apr 2021 16:12:24 -0300 Message-Id: <20210419191224.23536-2-corngood@gmail.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210419191224.23536-1-corngood@gmail.com> References: <20210419191224 DOT 23536-1-corngood AT gmail DOT com> MIME-Version: 1.0 X-Spam-Status: No, score=-10.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: David McFarland via Cygwin Reply-To: David McFarland Cc: David McFarland , lemures DOT lemniscati AT gmail DOT com Content-Type: text/plain; charset="utf-8" Errors-To: cygwin-bounces AT cygwin DOT com Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 13JJFex0008960 This PR removes a recently added -R/usr/lib from the linker flags, which is incompatible with gcc: $ cc $(pkg-config --libs libbrotlidec) cc: error: unrecognized command-line option ‘-R’ --- brotli.cygport | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/brotli.cygport b/brotli.cygport index dbf43b7..91deb5c 100644 --- a/brotli.cygport +++ b/brotli.cygport @@ -4,7 +4,7 @@ inherit cmake python-wheel NAME="brotli" VERSION=1.0.9 -RELEASE=1 +RELEASE=2 CATEGORY="Libs" SUMMARY="Brotli compression format library" DESCRIPTION="Brotli is a generic-purpose lossless compression algorithm that @@ -14,6 +14,7 @@ comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression." HOMEPAGE="https://github.com/google/brotli" SRC_URI="${HOMEPAGE}/archive/v${VERSION}/brotli-v${VERSION}.tar.gz" +PATCH_URI="${HOMEPAGE}/commit/092446fafb4bfb81738853b7c7f76b293cd92a80.patch" BUILD_REQUIRES="\ cmake\ -- 2.31.1 -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple