From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17443 invoked by alias); 10 Jul 2002 23:26:01 -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 17435 invoked from network); 10 Jul 2002 23:26:00 -0000 Received: from unknown (HELO knut.anidea.com) (216.236.135.152) by sources.redhat.com with SMTP; 10 Jul 2002 23:26:00 -0000 Received: from localhost (tjmather@localhost) by knut.anidea.com (8.11.6/8.11.6) with ESMTP id g6B0GZr07768; Wed, 10 Jul 2002 20:16:35 -0400 Date: Wed, 10 Jul 2002 16:26:00 -0000 From: "T.J. Mather" X-X-Sender: To: =?iso-8859-9?Q?H=2E_Kemal_G=FCrsoy?= cc: Subject: Re: gnu.readline compile problem In-Reply-To: <20020711022401.I17310@localhost> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT X-SW-Source: 2002-07/txt/msg00002.txt.bz2 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