diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2013-10-14 22:12:36 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2013-10-14 22:12:36 +0000 |
commit | 4a9baaef5437b88c497772bbe07cc7abb6bf5844 (patch) | |
tree | 4189cfd415f1b89dd30c6850eef522657555a9b8 | |
parent | 8b79d62003a148de63a45224726de1c092f3be9f (diff) | |
download | freebsd-ports-4a9baaef5437b88c497772bbe07cc7abb6bf5844.zip |
Fix build with clang and libc++ on i386.
Submitted by: tijl
-rw-r--r-- | editors/libreoffice/files/extra-patch-libc++ | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/editors/libreoffice/files/extra-patch-libc++ b/editors/libreoffice/files/extra-patch-libc++ index 7f1c287b49e5..0574ec40aec6 100644 --- a/editors/libreoffice/files/extra-patch-libc++ +++ b/editors/libreoffice/files/extra-patch-libc++ @@ -247,7 +247,7 @@ //================================================================================================== --- bridges/source/cpp_uno/gcc3_linux_intel/share.hxx.orig 2013-08-13 16:11:48.000000000 -0400 +++ bridges/source/cpp_uno/gcc3_linux_intel/share.hxx 2013-09-18 13:06:17.000000000 -0400 -@@ -25,6 +25,37 @@ +@@ -25,10 +25,39 @@ #include <uno/any2.h> @@ -284,8 +284,12 @@ + namespace CPPU_CURRENT_NAMESPACE { +- +-void dummy_can_throw_anything( char const * ); + + // ----- following decl from libstdc++-v3/libsupc++/unwind-cxx.h and unwind.h -@@ -86,6 +117,13 @@ +@@ -86,6 +115,15 @@ void *thrown_exception, void *tinfo, void (*dest) (void *) ) __attribute__((noreturn)); #endif @@ -296,6 +300,8 @@ +namespace CPPU_CURRENT_NAMESPACE +{ + ++void dummy_can_throw_anything( char const * ); ++ // ----- //================================================================================================== |