From owner-freebsd-ports@FreeBSD.ORG Tue Jun 7 01:01:56 2011 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A875F106564A; Tue, 7 Jun 2011 01:01:56 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (gw.catspoiler.org [75.1.14.242]) by mx1.freebsd.org (Postfix) with ESMTP id 82FEE8FC0C; Tue, 7 Jun 2011 01:01:56 +0000 (UTC) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.13.3/8.13.3) with ESMTP id p570U46N097257; Mon, 6 Jun 2011 17:30:08 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <201106070030.p570U46N097257@gw.catspoiler.org> Date: Mon, 6 Jun 2011 17:30:04 -0700 (PDT) From: Don Lewis To: chat95@mac.com In-Reply-To: <20110508.221235.1049390459241955982.chat95@mac.com> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Cc: lstewart@FreeBSD.org, freebsd-ports@FreeBSD.org, openoffice@FreeBSD.org Subject: Re: OO 3.3.0 fails to build "moz" module on amd64 8-STABLE 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: Tue, 07 Jun 2011 01:01:56 -0000 On 8 May, Maho NAKATA wrote: > Hi > > Thanks for your report. I'm aware of this issue, since my OOo build > is broken at the same place. Sorry and I don't have a clue yet, but, > I guess from folllowing error message, somehow moz module > invoke make instead gmake. >> Makefile:83: *** missing separator. Stop. Actually, I think a gmake update is causing this problem. See this OpenOffice.org ticket: It looks like it's fixed in OOo 3.4, but in the meantime I've been able to build 3.3 with the following patch (from Comment #1 on the ticket) added to the files/ directory for the port: ======================================= --- moz/makefile.mk.orig 2011-01-18 05:34:25.000000000 -0800 +++ moz/makefile.mk 2011-04-29 16:04:37.000000000 -0700 @@ -86,7 +86,8 @@ patches/dtoa.patch \ patches/respect_disable_pango.patch \ patches/arm_build_fix.patch \ - patches/link_fontconfig.patch + patches/link_fontconfig.patch \ + patches/brokenmakefile.patch # This file is needed for the W32 build when BUILD_MOZAB is set # (currently only vc8/vs2005 is supported when BUILD_MOZAB is set) --- /dev/null 2011-04-29 16:00:00.000000000 -0700 +++ moz/patches/brokenmakefile.patch 2011-04-29 16:04:55.000000000 -0700 @@ -0,0 +1,13 @@ +--- misc/mozilla/mailnews/extensions/smime/build/Makefile.in 2010-09-04 16:00:38.000000000 +0100 ++++ misc/build/mozilla/mailnews/extensions/smime/build/Makefile.in 2010-09-04 16:02:24.000000000 +0100 +@@ -79,10 +79,6 @@ + $(DIST)/lib/$(LIB_PREFIX)msgsmime_s.$(LIB_SUFFIX) \ + $(NULL) + +-ifndef MOZ_STATIC_MAIL_BUILD +-SHARED_LIBRARY_LIBS + = $(DIST)/lib/$(LIB_PREFIX)msgbsutl_s.$(LIB_SUFFIX) +-endif +- + EXTRA_DSO_LDOPTS = \ + $(LIBS_DIR) \ + $(EXTRA_DSO_LIBS) \ =======================================