From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25130 invoked by alias); 29 May 2007 17:41:31 -0000 Received: (qmail 25113 invoked by uid 22791); 29 May 2007 17:41:30 -0000 X-Spam-Check-By: sourceware.org Received: from smtp112.sbc.mail.mud.yahoo.com (HELO smtp112.sbc.mail.mud.yahoo.com) (68.142.198.211) by sourceware.org (qpsmtpd/0.31) with SMTP; Tue, 29 May 2007 17:41:27 +0000 Received: (qmail 49494 invoked from network); 29 May 2007 17:41:25 -0000 Received: from unknown (HELO lucon.org) (hjjean@sbcglobal.net@75.61.94.53 with login) by smtp112.sbc.mail.mud.yahoo.com with SMTP; 29 May 2007 17:41:25 -0000 X-YMail-OSG: BqjmkTEVM1ng6JbycCyo.W1Kx8BoLxp85QbTqS3g_Rl7PqdxMs0dLBhFolsuKMN4iiGoFEm_iU7Gi4Ic0f9CEkuGuf602eeSe.OjrrIFmaXNt4Zcb4f5FEbPrwlABq2nrup1frv8zaOWow-- Received: by lucon.org (Postfix, from userid 500) id 2BBCC46EED6; Tue, 29 May 2007 10:41:24 -0700 (PDT) Date: Tue, 29 May 2007 18:29:00 -0000 From: "H. J. Lu" To: Andreas Schwab Cc: Paolo Bonzini , Matthias Klose , gcc-patches@gcc.gnu.org, java-patches@gcc.gnu.org Subject: Re: PATCH: PR libjava/32078: Update libtool in classpath Message-ID: <20070529174124.GA14440@lucon.org> References: <20070527182203.GA12846@lucon.org> <20070527182317.GA21785@lucon.org> <465C0461.2060605@ubuntu.com> <20070529131004.GB6442@lucon.org> <465C2D27.10500@gnu.org> <20070529155820.GA13758@lucon.org> <20070529171642.GA14163@lucon.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-05/txt/msg02021.txt.bz2 On Tue, May 29, 2007 at 07:37:25PM +0200, Andreas Schwab wrote: > "H. J. Lu" writes: > > > It is different from libjava/HACKING and the current libtool files > > in classpath in libjava were copied from the old libtool in gcc > > toplevel directory. Assuming it works, we have 2 choices: > > > > 1. Add AC_CONFIG_AUX_DIR(../..) to configure.ac in classpath: > > a. Update libjava/HACKING. > > Not needed, just mark the change GCJ LOCAL. > >From libjava/HACKING: - Use auto* to create configure, Makefile.in, etc Make sure you have Automake 1.9.6 installed. Exactly that version! You have to make sure to use the gcc libtool.m4 and gcc lt* scripts cd .../classpath cp ../../lt* . cp ../../config.sub ../../config.guess . aclocal -I m4 -I ../.. -I ../../config autoconf autoheader automake rm -rf autom4te.cache cd .. scripts/makemake.tcl > sources.am automake There is no need to add AC_CONFIG_AUX_DIR(../..) if the above is followed. H.J.