summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-1.1/files/patch-bridges+source+cpp_uno+gcc3_freebsd_intel+except.cxx
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2005-08-13 11:32:35 +0000
committerMaho Nakata <maho@FreeBSD.org>2005-08-13 11:32:35 +0000
commitdf1f3aaff68d2de1a67cfa00981fa16afe4aa926 (patch)
treea767f452824afec4ac167bc302926a6682060bc4 /editors/openoffice.org-1.1/files/patch-bridges+source+cpp_uno+gcc3_freebsd_intel+except.cxx
parentFix distfile fetching. (diff)
1. if we set CPUTYPE in /etc/make.conf, OOo build fails [1].
2. openoffice-1.1 crashes for second invocation; some file is missing. this is exactly same as #i22253#, and fortunately OOo worked for some older version I don't remember. PR: 84787 [2] Submitted by: Jack L.[1], achix mantzix <achix@smadev.internal.net> [2] and Jens Ressack <rehsack@liwing.de> [2] Approved by: portmgr(clement)
Notes
Notes: svn path=/head/; revision=140871
Diffstat (limited to '')
-rw-r--r--editors/openoffice.org-1.1/files/patch-bridges+source+cpp_uno+gcc3_freebsd_intel+except.cxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/editors/openoffice.org-1.1/files/patch-bridges+source+cpp_uno+gcc3_freebsd_intel+except.cxx b/editors/openoffice.org-1.1/files/patch-bridges+source+cpp_uno+gcc3_freebsd_intel+except.cxx
new file mode 100644
index 000000000000..11088e05cd62
--- /dev/null
+++ b/editors/openoffice.org-1.1/files/patch-bridges+source+cpp_uno+gcc3_freebsd_intel+except.cxx
@@ -0,0 +1,21 @@
+Issutracker : #i22253#
+CWS : N/A
+Author : <mrauch@openoffice.org> (JCA)
+Description :
+
+Index: bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx
+===================================================================
+RCS file: /cvs/udk/bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx,v
+retrieving revision 1.4
+diff -u -r1.4 except.cxx
+--- bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx 28 Apr 2003 16:41:25 -0000 1.4
++++ bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx 13 Aug 2005 04:40:14 -0000
+@@ -182,7 +182,7 @@
+ buf.append( 'E' );
+
+ OString symName( buf.makeStringAndClear() );
+- rtti = (type_info *)dlsym( m_hApp, symName.getStr() );
++ rtti = (type_info *)dlsym( RTLD_DEFAULT, symName.getStr() );
+
+ if (rtti)
+ {