From owner-freebsd-openoffice@FreeBSD.ORG Mon Mar 27 09:40:29 2006 Return-Path: X-Original-To: openoffice@hub.freebsd.org Delivered-To: freebsd-openoffice@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 400FA16A41F for ; Mon, 27 Mar 2006 09:40:29 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CEBC43D6D for ; Mon, 27 Mar 2006 09:40:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2R9eLtm057027 for ; Mon, 27 Mar 2006 09:40:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2R9eLod057026; Mon, 27 Mar 2006 09:40:21 GMT (envelope-from gnats) Date: Mon, 27 Mar 2006 09:40:21 GMT Message-Id: <200603270940.k2R9eLod057026@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Jeff Brown Cc: Subject: Re: ports/94449: editors/openoffice.org-2.0: compile error while making 'hsqldb' X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jeff Brown List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Mar 2006 09:40:29 -0000 The following reply was made to PR ports/94449; it has been noted by GNATS. From: Jeff Brown To: bug-followup@FreeBSD.org, rotkap@gmx.de Cc: Subject: Re: ports/94449: editors/openoffice.org-2.0: compile error while making 'hsqldb' Date: Mon, 27 Mar 2006 01:38:40 -0800 (PST) I've poked at this a bit, and this particular failure seems to be caused by an entry in solenv/inc/unxfbsdi.mk: SOLAR_JAVA*=TRUE It seems that the top-level openoffice configure script ensures that SOLAR_JAVA is unset when configured "--without-java"; however, unixfbsdi.mk is included later on during the build, and it sets SOLAR_JAVA to TRUE, which triggers building of java-dependent components. (I guess "*=" is dmake-ese for "?=".) I've changed the above line to: SOLAR_JAVA= ...and now my openoffice-2.0 builds get much, much farther before falling over and dying for no obvious reason. -JAB