From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 59092 invoked by alias); 1 Jul 2017 07:18:37 -0000 Mailing-List: contact cygwin-apps-help@cygwin.com; run by ezmlm Precedence: bulk Sender: cygwin-apps-owner@cygwin.com List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps@cygwin.com Received: (qmail 59064 invoked by uid 89); 1 Jul 2017 07:18:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.8 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 spammy=esteemed, banner, Esteemed, amazing X-HELO: m0.truegem.net Received: from m0.truegem.net (HELO m0.truegem.net) (69.55.228.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 01 Jul 2017 07:18:36 +0000 Received: from localhost (mark@localhost) by m0.truegem.net (8.12.11/8.12.11) with ESMTP id v617IYx3099509 for ; Sat, 1 Jul 2017 00:18:34 -0700 (PDT) (envelope-from mark@maxrnd.com) Date: Sat, 01 Jul 2017 07:18:00 -0000 From: Mark Geisert To: cygwin-apps@cygwin.com Subject: Re: libtool not finding /usr/lib/libintl.la or what? In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-IsSubscribed: yes X-SW-Source: 2017-07/txt/msg00004.txt.bz2 On Sat, 1 Jul 2017, Marco Atzeri wrote: > On 01/07/2017 07:47, Mark Geisert wrote: >> Esteemed co-conspirators, >> I've been pulling my hair out trying to build a new cygutils package on >> 32-bit Cygwin. The exact same source package builds fine on 64-bit but >> 32-bit fails with the following... >> >> CC src/ipc/semstat.o >> CXX src/cygdrop/src_cygdrop_cygdrop-cygdrop.o >> CCLD src/cygicons/libicons.la >> CCLD src/banner/banner.exe >> libtool: error: cannot find the library '/usr/lib/libintl.la' or >> unhandled argument '/usr/lib/libintl.la' > > it is pulled by /usr/lib/libpopt.la. > > > try > > $ cd /usr/lib > $ mv libpopt.la libpopt.la_bk > > and run again make in build Amazing. That does work. But what is the correct way to deal with this when some random user wants to build 32-bit cygutils from source? Should the build procedure actually do what you suggested? I could not figure out which package supplies (or used to supply) libintl.la for 32 bits. Thanks much, ..mark