From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pj1-x1036.google.com (mail-pj1-x1036.google.com [IPv6:2607:f8b0:4864:20::1036]) by sourceware.org (Postfix) with ESMTPS id EF147385800A for ; Thu, 31 Dec 2020 09:32:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org EF147385800A Received: by mail-pj1-x1036.google.com with SMTP id lb18so4681771pjb.5 for ; Thu, 31 Dec 2020 01:32:38 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:in-reply-to:references :message-id:mime-version:content-transfer-encoding; bh=u+ubN7gZduZrshUn6hWFVt1srTQRdch6SnL5FbVww/g=; b=p0zD4XOsRCEh36BbiE56DzC1aSuxov5qSBAZJjqdCB30KI9xDuL6J5AJyesugRubEC b7oY3X393Ohq4Y5VcB5KbjqtPUCwoRAoKYun2nuZ5bC7022CR6gPk4u6cx+obWddwvTT d/rb6Q1k4WN3LGzCA53SGPAF/iQP2OaqVO88A607pxvs3oBmyuWw7VTjk9FLb+Kx2/NU GeIvsudtakJ/n/nwJ6tzW5hPYHP6eXMHMb8/mqaw+3dl9ZKHjrKT4E6nDlCjUSwDoJ0x FoVJ3Ycce+0ZWQABwHxXyVEX9Hj3TFPSL5fwcHxx9G4+tm9mkpi4J0kffYICkFnsrUCQ V/Hg== X-Gm-Message-State: AOAM531HnKL2eb5rKX8KuygCc3ADeThEpgKtPAGnUKEcINcdozpCMsU4 YhaQAKe5oJjdfDutz1Ei5bcePpDkS7A= X-Google-Smtp-Source: ABdhPJyfMVF8+NGyTxWI57sa2r2Pvb88Sy9vg09ZyaPhh3IRY4LfXrR0h3T5KKV6M1RCBBiKMOmkAg== X-Received: by 2002:a17:90a:bb83:: with SMTP id v3mr12480635pjr.28.1609407157614; Thu, 31 Dec 2020 01:32:37 -0800 (PST) Received: from [192.168.3.11] ([2400:2411:aa20:4300:6803:2092:c854:4de3]) by smtp.gmail.com with ESMTPSA id k25sm45851755pfi.10.2020.12.31.01.32.36 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Thu, 31 Dec 2020 01:32:36 -0800 (PST) Date: Thu, 31 Dec 2020 18:32:37 +0900 From: Lemures Lemniscati To: cygwin-apps@cygwin.com Subject: Re: [ITA] libexif-0.6.22-1 In-Reply-To: <87a6tupdgi.fsf@Rainer.invalid> References: <87eej6pdph.fsf@Rainer.invalid> <87a6tupdgi.fsf@Rainer.invalid> Message-Id: <20201231183235.4EB9.50F79699@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Mailer: Becky! ver. 2.75.02 [ja] X-Antivirus: Avast (VPS 201231-0, 2020/12/31), Outbound message X-Antivirus-Status: Clean X-Spam-Status: No, score=-1.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, KAM_NUMSUBJECT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=no 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-apps@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin package maintainer discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Dec 2020 09:32:40 -0000 On Thu, 31 Dec 2020 09:49:33 +0100, Achim Gratz > Achim Gratz writes: > > # Work around a libpopt-devel-1.16-2 packaging issue that causes the error: > > # libtool: error: cannot find the library '/usr/lib/libintl.la' or unhandled argument '/usr/lib/libintl.la' > > # See http://www.cygwin.com/ml/cygwin-apps/2017-07/msg00005.html > > - cmd: if [%CONFIG%]==[cygwin] ( > > C:\%CONFIG%\bin\bash -e -l -c "rm /usr/lib/libpopt.la" ) > > > > …and indeed that makes things work. :-) > > This is the reason it works on the CI: > > curl -fsSL https://gist.githubusercontent.com/jon-turney/0338af595313f598bfab15a0ac0df847/raw/bd0eeca6be899e7846aa988fbcf15e4e12f5f842/zp_libtool_cleanlafiles.sh -o %CYGWIN_ROOT%\etc\postinstall\zp_libtool_cleanlafiles.sh > > --8<---------------cut here---------------start------------->8--- > rmla=() > for la in $(find /usr/lib/ -maxdepth 1 -name '*.la') > do > # modules in /usr/lib (e.g. aRts, guile) are generally libltdl-based > if grep -q '^shouldnotlink=yes$' $la > then > continue > fi > case ${la##*/} in > # ltdl.m4 requires this to be present > libltdl.la) continue ;; > # gnucash relies on .la loading due to the 'cyg' prefix > libgnc-*.la) continue ;; > esac > > rmla+=($la) > done > > rm -f ${rmla[*]} > --8<---------------cut here---------------end--------------->8--- > > > > Regards, > Achim. Thank you very much! It works like a magic. libpopt-devel-1.16-2 for x86 has /usr/lib/libpopt.la $ uname -srm; cygcheck -c libpopt-devel; cygcheck -l libpopt-devel CYGWIN_NT-10.0-WOW 3.1.7(0.340/5/3) i686 Cygwin Package Information Package Version Status libpopt-devel 1.16-2 Incomplete /usr/include/popt.h /usr/lib/libpopt.dll.a /usr/lib/libpopt.la /usr/lib/pkgconfig/popt.pc /usr/share/man/man3/popt.3.gz Regards, Lem P.S. By the way, I'm also planning to package popt :)