From owner-freebsd-ports@FreeBSD.ORG Wed Jun 1 17:25:51 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7615E16A41C for ; Wed, 1 Jun 2005 17:25:51 +0000 (GMT) (envelope-from nakal@nurfuerspam.de) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 9FD0E43D4C for ; Wed, 1 Jun 2005 17:25:50 +0000 (GMT) (envelope-from nakal@nurfuerspam.de) Received: (qmail invoked by alias); 01 Jun 2005 17:25:48 -0000 Received: from p5090B7AF.dip.t-dialin.net (EHLO p5090B7AF.dip.t-dialin.net) [80.144.183.175] by mail.gmx.net (mp001) with SMTP; 01 Jun 2005 19:25:48 +0200 X-Authenticated: #989277 From: Martin To: FreeBSD Ports Content-Type: text/plain Date: Wed, 01 Jun 2005 19:23:36 +0200 Message-Id: <1117646616.1902.14.camel@klotz.local> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: Subject: accessibility/gnomespeech: weird behavior while configure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2005 17:25:51 -0000 Hi, I've seen this on 2 platforms so far (i386 and amd64). If you try to compile accessibility/gnomespeech and have linux-sun-jdk-1.4.2 installed the configure script will never stop resulting in 100% load. # cd /usr/ports/accessibility/gnomespeech; make install [...] checking for "/bin/theta-config"... no checking for "/usr/local/bin/java"... yes checking for "/usr/local/bin/javac"... yes ---> waiting forever here <--- I found out that commenting out the line 20216 in /usr/ports/accessibility/gnomespeech/work/gnome-speech-0.3.7/configure will fix the problem. Here the strange line which never stops executing: javac_version=`$JAVAC -version 2>&1 | sed -e "1s/javac //" -e "1q" ` Looks quite normal to me except for the fact that javac will not accept "-version", should be simply "java". But I cannot explain why the script stops there. Martin