From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3388 invoked by alias); 22 Jan 2002 09:39:05 -0000 Mailing-List: contact rhug-rhats-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: rhug-rhats-owner@sources.redhat.com Received: (qmail 3356 invoked from network); 22 Jan 2002 09:39:04 -0000 Received: from unknown (HELO tml-gw.tml.hut.fi) (130.233.44.1) by sources.redhat.com with SMTP; 22 Jan 2002 09:39:04 -0000 Received: (from smap@localhost) by tml-gw.tml.hut.fi (8.8.7/8.8.7) id LAA22971 for ; Tue, 22 Jan 2002 11:37:08 +0200 Received: from mail.tml.hut.fi(130.233.45.70) by tml-gw.tml.hut.fi via smap (V2.0) id xma022959; Tue, 22 Jan 02 11:36:45 +0200 Received: from morphine.tml.hut.fi (morphine.tml.hut.fi [130.233.45.7]) by mail.tml.hut.fi (8.11.0/8.11.0) with ESMTP id g0M9cd808787 for ; Tue, 22 Jan 2002 11:38:39 +0200 (EET) Received: from localhost (jsantala@localhost) by morphine.tml.hut.fi (8.9.3+Sun/8.9.3) with ESMTP id LAA09416 for ; Tue, 22 Jan 2002 11:38:38 +0200 (EET) X-Authentication-Warning: morphine.tml.hut.fi: jsantala owned process doing -bs Date: Tue, 22 Jan 2002 01:39:00 -0000 From: Jukka Santala cc: rhug-rhats@sources.redhat.com Subject: Re: libtool woes In-Reply-To: <15436.19600.205399.359964@makita.cygnus.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2002-01/txt/msg00005.txt.bz2 On Mon, 21 Jan 2002, Alexandre Petit-Bianco wrote: > Jukka Santala writes: > > The fix in gnu.readline is neccessary because otherwise the build > > will break horribly on any systems with a sensible jar-tool that > > actually requires source-filenames. > What are you seeing going wrong with the original actions? First, a funny, using GCC 3.1/HEAD jar: (here=`pwd`; cd ./upstream/src; jar uf $here/org-gnu-readline-0.6.jar) jar: `-u' mode unimplemented. make: *** [org-gnu-readline-0.6.jar] Error 1 In other words, the jar utility provided with GCC doesn't support -u at all, hence some rewording might be in order. Using Sun j2sdk 1.3.1's or IBM's 2-13 jar: (here=`pwd`; cd ./upstream/src; jar uf $here/org-gnu-readline-0.6.jar) 'u' flag requires manifest or input files be specified! Usage: jar {ctxu}[vfm0M] [jar-file] [manifest-file] [-C dir] files ... Kaffe's jar does work, but that's about it. The main reason is that the line doesn't actually do anything, since there are no non-source-files to add. To make it able to compile with the present GCC alone, the additional resource-files need to be added to the above "jar cf" line ofcourse. > > Index: gnu.regexp/Makefile.am > > Index: xerces/Makefile.am > This is fine. Could you please write ChangeLog entries? Sure. These do not allow a cross-compile yet, by the way, but they're likely to bite even people who're just trying out alternative compiles of GCC, and given rhug doesn't yet compile with the stable/release version, that's quite a large portion of them :) Same problem goes with gcjh etc. though, so I guess I'll look if I can bundle more things into that patch at once. -Jukka Santala