Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Sep 2012 07:43:43 +0000 (UTC)
From:      Alex Dupre <ale@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r304263 - head/editors/libreoffice
Message-ID:  <201209140743.q8E7hhes072090@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ale
Date: Fri Sep 14 07:43:43 2012
New Revision: 304263
URL: http://svn.freebsd.org/changeset/ports/304263

Log:
  Force to use GCC on FreeBSD 8.x, since with clang it builds fine,
  but doesn't work at all.

Modified:
  head/editors/libreoffice/Makefile

Modified: head/editors/libreoffice/Makefile
==============================================================================
--- head/editors/libreoffice/Makefile	Fri Sep 14 07:07:38 2012	(r304262)
+++ head/editors/libreoffice/Makefile	Fri Sep 14 07:43:43 2012	(r304263)
@@ -331,6 +331,12 @@ CONFIGURE_ARGS+=	--enable-release-build
 
 .include <bsd.port.pre.mk>
 
+# if compiled with clang on 8.x libreoffice exits with the following error:
+# terminate called after throwing an instance of 'com::sun::star::ucb::InteractiveAugmentedIOException'
+.if ${OSVERSION} < 900000
+WITH_GCC=	yes
+.endif
+
 .if defined(WITH_GCC)
 USE_GCC=	4.6+
 DISTFILES+=	bd30e9cf5523cdfc019b94f5e1d7fd19-cppunit-1.12.1.tar.gz:ext



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209140743.q8E7hhes072090>