From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29789 invoked by alias); 11 Jul 2002 18:14:49 -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 29782 invoked from network); 11 Jul 2002 18:14:49 -0000 Received: from unknown (HELO jive.SoftHome.net) (66.54.152.27) by sources.redhat.com with SMTP; 11 Jul 2002 18:14:49 -0000 Received: (qmail 12641 invoked by uid 417); 11 Jul 2002 18:14:48 -0000 Received: from shunt-smtp-out-0 (HELO softhome.net) (172.16.3.12) by shunt-smtp-out-0 with SMTP; 11 Jul 2002 18:14:48 -0000 Received: from localhost.localdomain ([212.253.71.61]) by softhome.net with esmtp; Thu, 11 Jul 2002 12:14:45 -0600 Date: Thu, 11 Jul 2002 11:14:00 -0000 From: "=?iso-8859-1?Q?H=2E_Kemal_G=FCrsoy?=" To: rhug-rhats@sources.redhat.com Subject: Re: gnu.readline compile problem Message-ID: <20020711211813.A1388@localhost> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-SW-Source: 2002-07/txt/msg00005.txt.bz2 Thanks, it works. H. Kemal Gürsoy 2002.07.11 03:16'de T.J. Mather bunu yazmýþ: > Hi, > > I ran into the same problem and was able to fix it by appending ":." > to > the classpath in Makefile.am. I checked in the change, so it should > be there > if you do a cvs update: > > Here's the patch: > =================================================================== > RCS file: /cvs/rhug/rhug/gnu.readline/Makefile.am,v > retrieving revision 1.8 > retrieving revision 1.9 > diff -u -r1.8 -r1.9 > --- Makefile.am 29 May 2002 06:27:39 -0000 1.8 > +++ Makefile.am 9 Jul 2002 03:10:54 -0000 1.9 > @@ -107,7 +107,7 @@ > # There's probably a cleaner generic way to handle this situation > > org_gnu_readline_Readline.h: $(lib_org_gnu_readline_la_DEPENDENCIES) > - $(GCJH) --classpath=upstream/src -jni `echo > $(lib_org_gnu_readline_la_DEPENDENCIES) | sed 's/\.class//g'` -o $@ > + $(GCJH) --classpath=upstream/src:. -jni `echo > $(lib_org_gnu_readline_la_DEPENDENCIES) | sed 's/\.class//g'` -o $@ > ./upstream/src/native/org_gnu_readline_Readline.c: > org_gnu_readline_Readline.h > > # Building the tests > > -TJ > http://maxmind.com > > On Thu, 11 Jul 2002, [iso-8859-9] H. Kemal Gürsoy wrote: > > > > > > the compilation stops just at the beginnig with the following > message : > > > > gcjh --classpath=upstream/src -jni 'echo > > upstream/src/org/gnu/readline/Readline.class | sed 's/\.class//g'' > -o > > org_gnu_readline_ReadLine.h > > upstream/src/org/gnu/readline/ReadLine: no such class > > make: *** [org_gnu_readline_ReadLine.h] Error 1 > >