diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2003-03-12 01:04:08 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2003-03-12 01:04:08 +0000 |
commit | 19599e5a4a411a2d56be9c645df2a3d9eb0d4ba3 (patch) | |
tree | d09f794c6c4092a612ca9d09bf3925389764a92c /editors/openoffice.org-2-devel/files/patch-solenv+bin+addsym.awk | |
parent | Change the imake-4 dependency to the new date.def file in XFree86 4.3.0. (diff) |
Update to cws_srx644_ooo11beta. It still doesn't build but this commit will help
to track the things down.
There are known problems with weak symbols and exceptions. Some c++ tools
inside the port will fail if you try to compile.
The cpp_uno bridge has been updated to the latest linux version available.
Added 'make update' target to upgrade the source to the latest version.
Approved by: kris (portmgr)
Diffstat (limited to 'editors/openoffice.org-2-devel/files/patch-solenv+bin+addsym.awk')
-rw-r--r-- | editors/openoffice.org-2-devel/files/patch-solenv+bin+addsym.awk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/editors/openoffice.org-2-devel/files/patch-solenv+bin+addsym.awk b/editors/openoffice.org-2-devel/files/patch-solenv+bin+addsym.awk new file mode 100644 index 000000000000..996e282b350b --- /dev/null +++ b/editors/openoffice.org-2-devel/files/patch-solenv+bin+addsym.awk @@ -0,0 +1,16 @@ +--- ../solenv/bin/addsym.awk.orig Tue Mar 11 15:11:44 2003 ++++ ../solenv/bin/addsym.awk Tue Mar 11 15:13:19 2003 +@@ -72,11 +72,11 @@ + END { + if (state == 0) { + print "# Weak RTTI symbols for C++ exceptions:" +- print "UDK_3_0_0 { global: _ZTI*; _ZTS*; };" ++ print "UDK_3_0_0 { global: _ZTI*; _ZTS*; GetVersionInfo;};" + } + } + state == 2 { +- print " _ZTI*; _ZTS*; # weak RTTI symbols for C++ exceptions" ++ print " _ZTI*; _ZTS*; GetVersionInfo;# weak RTTI symbols for C++ exceptions" + state = 3 + } + /^[\t ]*UDK_3_0_0[\t ]*{/ { state = 1 } |