svn commit: r314100 - head/editors/libreoffice
Jung-uk Kim
jkim at FreeBSD.org
Wed Mar 13 17:38:47 UTC 2013
Author: jkim
Date: Wed Mar 13 17:38:47 2013
New Revision: 314100
URL: http://svnweb.freebsd.org/changeset/ports/314100
Log:
Disable MERGELIBS by default and mark it broken for now. Currently, it
seems to cause weird run-time link issues but we are not sure whether the
culprit is rtld(1) or clang 3.2. Stability always outweighs performance.
PR: ports/176880
Modified:
head/editors/libreoffice/Makefile
Modified: head/editors/libreoffice/Makefile
==============================================================================
--- head/editors/libreoffice/Makefile Wed Mar 13 17:37:03 2013 (r314099)
+++ head/editors/libreoffice/Makefile Wed Mar 13 17:38:47 2013 (r314100)
@@ -182,7 +182,7 @@ MANCOMPRESSED= yes
OPTIONS_DEFINE= CUPS DEBUG GNOME GTK2 GTK3 JAVA KDE4 MERGELIBS MMEDIA PGSQL \
SDK SYSTRAY TEST WEBDAV
-OPTIONS_DEFAULT=CUPS GTK2 MERGELIBS
+OPTIONS_DEFAULT=CUPS GTK2
JAVA_DESC= Add java support (XML Filters, macros)
MERGELIBS_DESC= Enable linking of big merged library
@@ -296,6 +296,7 @@ CONFIGURE_ARGS+= --disable-kde4
.endif
.if ${PORT_OPTIONS:MMERGELIBS}
+BROKEN= mergelibs causes runtime problems
CONFIGURE_ARGS+= --enable-mergelibs
.else
CONFIGURE_ARGS+= --disable-mergelibs
More information about the svn-ports-head
mailing list