From owner-freebsd-ports@FreeBSD.ORG Thu Jul 26 13:26:13 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 65154106566B; Thu, 26 Jul 2012 13:26:13 +0000 (UTC) (envelope-from lenzi.sergio@gmail.com) Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by mx1.freebsd.org (Postfix) with ESMTP id E2FAE8FC1D; Thu, 26 Jul 2012 13:26:12 +0000 (UTC) Received: by yenl8 with SMTP id l8so2336097yen.13 for ; Thu, 26 Jul 2012 06:26:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:from:to:cc:in-reply-to:references :disposition-notification-to:content-type:date:message-id :mime-version:x-mailer; bh=YPlA5NVzcqFybvM9DKbz2GWqSVKlRl4yZ9EJiiphYK0=; b=O1ql3svzvSqRmXBvOE67aegVPq+7sQwBCuuUCqKrFeoAA2vTQymPRnDoAsXse8hpFR JzYbl/S/QBoEbWhDeMAye7aNFweRwhBE+d3zH5tHXnsAf4S8VIPbHyEdoAIcigjEYQ30 4ycFXSDZpuydp7EE4qrSm9AnzEO1bnYr2umAoDwzbv/bPGqd2ivXCFDR4J2WK2wRmJTx KVauzmUmV3Tkd0J4LpifB2AKAnrP+V8qEyyI9wvnugENyDGK7hYHrBeSQRXfBOSNoHeU go+L1B1BVDULaPKgLU0j2WcvicWcdKkYBGtHXk4INW7yZLis2ETSkZFewvT2RnH4CByt PC8Q== Received: by 10.236.184.201 with SMTP id s49mr618286yhm.110.1343309172292; Thu, 26 Jul 2012 06:26:12 -0700 (PDT) Received: from [192.168.6.230] ([177.82.33.173]) by mx.google.com with ESMTPS id b2sm7649415yhm.5.2012.07.26.06.26.09 (version=SSLv3 cipher=OTHER); Thu, 26 Jul 2012 06:26:11 -0700 (PDT) From: Sergio de Almeida Lenzi To: Andriy Gapon In-Reply-To: <50113592.3000906@FreeBSD.org> References: <500D91AA.70502@FreeBSD.org> <500DB55A.8000301@FreeBSD.org> <500DB8CE.4040206@FreeBSD.org> <500DBA56.5040800@FreeBSD.org> <500F13CC.4070706@FreeBSD.org> <500F9C55.1030009@FreeBSD.org> <50108FEF.3030405@FreeBSD.org> <50113592.3000906@FreeBSD.org> Date: Thu, 26 Jul 2012 10:26:06 -0300 Message-ID: <1343309166.54960.7.camel@z6000.lenzicasa> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@FreeBSD.org, Jung-uk Kim Subject: Re: [RFC] LibreOffice build issues 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: Thu, 26 Jul 2012 13:26:13 -0000 Em Qui, 2012-07-26 às 15:18 +0300, Andriy Gapon escreveu: > on 26/07/2012 03:31 Jung-uk Kim said the following: > > I guess you had installed OpenSSL from ports. ;-) > > Yes, bingo. > for me (amd64,freebsd 8.3 stable, dual Xeon, 12 cpu) run time=90 minutes. It only builds with: clang-devel (3.2) flags (WITH-CLANG)... and a modified===> patch-testtools__source__bridgetest__makefile.m that treats BSD like OSX PPC GCC... the test dumps core (signal 6, 11) in the test... On FreeBSD 9,10 builds OK.. ========================================================== --- testtools/source/bridgetest/makefile.mk.orig 2012-07-03 08:01:28.000000000 -0300 +++ testtools/source/bridgetest/makefile.mk 2012-07-25 21:08:23.000000000 -0300 @@ -56,6 +56,8 @@ my_components += testComponent .END +CFLAGSCXX += -fPIC + .IF "$(GUI)"=="WNT" .IF "$(compcheck)" != "" CFLAGSCXX += -DCOMPCHECK @@ -143,16 +145,16 @@ ################################################################# -runtest : $(DLLDEST)$/uno_types.rdb $(DLLDEST)$/uno_services.rdb makefile.mk \ - $(SHL1TARGETN) $(SHL2TARGETN) $(SHL3TARGETN) +runtest: + echo RUNTEST + +#runtest : $(DLLDEST)$/uno_types.rdb $(DLLDEST)$/uno_services.rdb makefile.mk \ +# $(SHL1TARGETN) $(SHL2TARGETN) $(SHL3TARGETN) .IF "$(CROSS_COMPILING)"!="YES" .IF "$(COM)$(OS)$(CPU)" == "GCCMACOSXP" @echo "Mac OSX PPC GCC fails this test!, likely broken UNO bridge. Fix me." .ELSE - cd $(DLLDEST) && $(AUGMENT_LIBRARY_PATH) $(SOLARBINDIR)/uno \ - -ro uno_services.rdb -ro uno_types.rdb \ - -s com.sun.star.test.bridge.BridgeTest -- \ - com.sun.star.test.bridge.CppTestObject + echo "Broken on FreeBSD 8.x 7.x" .ENDIF ==================================================================