svn commit: r304263 - head/editors/libreoffice

Alex Dupre ale at FreeBSD.org
Fri Sep 14 07:43:43 UTC 2012


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



More information about the svn-ports-all mailing list