From owner-svn-ports-all@FreeBSD.ORG Tue May 6 23:52:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 654E250B; Tue, 6 May 2014 23:52:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 39B2237A; Tue, 6 May 2014 23:52:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s46NqiIJ009126; Tue, 6 May 2014 23:52:44 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s46NqhKg009123; Tue, 6 May 2014 23:52:43 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201405062352.s46NqhKg009123@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 6 May 2014 23:52:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353137 - in head/editors/libreoffice: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 May 2014 23:52:44 -0000 Author: jkim Date: Tue May 6 23:52:43 2014 New Revision: 353137 URL: http://svnweb.freebsd.org/changeset/ports/353137 QAT: https://qat.redports.org/buildarchive/r353137/ Log: Fix a bug introduced by the upstream long ago. ​http://cgit.freedesktop.org/libreoffice/core/commit/bridges/source/?id=55189 __FreeBSD_version was not defined and the preprocessor set it to 0 because sys/param.h was not properly included. As a consequence, it always used dlsym(3) hacks for the old rtld(1). Added: head/editors/libreoffice/files/patch-bridges__source__cpp_uno__gcc3_linux_intel__except.cxx (contents, props changed) head/editors/libreoffice/files/patch-bridges__source__cpp_uno__gcc3_linux_x86-64__except.cxx (contents, props changed) Modified: head/editors/libreoffice/Makefile Modified: head/editors/libreoffice/Makefile ============================================================================== --- head/editors/libreoffice/Makefile Tue May 6 23:42:09 2014 (r353136) +++ head/editors/libreoffice/Makefile Tue May 6 23:52:43 2014 (r353137) @@ -2,7 +2,7 @@ .include "${.CURDIR}/Makefile.common" -PORTREVISION= 0 +PORTREVISION= 1 COMMENT= Full integrated office productivity suite Added: head/editors/libreoffice/files/patch-bridges__source__cpp_uno__gcc3_linux_intel__except.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/libreoffice/files/patch-bridges__source__cpp_uno__gcc3_linux_intel__except.cxx Tue May 6 23:52:43 2014 (r353137) @@ -0,0 +1,13 @@ +--- bridges/source/cpp_uno/gcc3_linux_intel/except.cxx.orig 2014-04-22 18:25:28.000000000 -0400 ++++ bridges/source/cpp_uno/gcc3_linux_intel/except.cxx 2014-05-06 16:19:42.000000000 -0400 +@@ -20,6 +20,10 @@ + #include + #include + #include ++#if defined(FREEBSD) ++#include ++#endif ++ + #include + + #include Added: head/editors/libreoffice/files/patch-bridges__source__cpp_uno__gcc3_linux_x86-64__except.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/libreoffice/files/patch-bridges__source__cpp_uno__gcc3_linux_x86-64__except.cxx Tue May 6 23:52:43 2014 (r353137) @@ -0,0 +1,12 @@ +--- bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx.orig 2014-04-22 18:25:28.000000000 -0400 ++++ bridges/source/cpp_uno/gcc3_linux_x86-64/except.cxx 2014-05-06 16:19:44.000000000 -0400 +@@ -21,6 +21,9 @@ + #include + #include + #include ++#if defined(FREEBSD) ++#include ++#endif + + #include + #ifndef _GLIBCXX_CDTOR_CALLABI // new in GCC 4.7 cxxabi.h