summaryrefslogtreecommitdiff
path: root/editors/openoffice-2.0-devel/files
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2005-02-04 23:57:18 +0000
committerMaho Nakata <maho@FreeBSD.org>2005-02-04 23:57:18 +0000
commit1b7bcfd35f63a7d36be6d9f373902aaccfbc7a57 (patch)
tree8ea0cb8c452c854cc88460f681c1b3b9f07bafe9 /editors/openoffice-2.0-devel/files
parentAdd WITHOUT_IPV6 knob (diff)
Update to 1.9m76
Notes
Notes: svn path=/head/; revision=128051
Diffstat (limited to 'editors/openoffice-2.0-devel/files')
-rw-r--r--editors/openoffice-2.0-devel/files/patch-offapi+drafts+com+sun+star+rendering+XParametericPolyPolygon2DFactory.idl32
-rw-r--r--editors/openoffice-2.0-devel/files/patch-project-jvmfwk67
-rw-r--r--editors/openoffice-2.0-devel/files/patch-psprint+source+helper+strhelper.cxx24
-rw-r--r--editors/openoffice-2.0-devel/files/patch-scp2+source+ooo+file_ooo.scp25
4 files changed, 0 insertions, 148 deletions
diff --git a/editors/openoffice-2.0-devel/files/patch-offapi+drafts+com+sun+star+rendering+XParametericPolyPolygon2DFactory.idl b/editors/openoffice-2.0-devel/files/patch-offapi+drafts+com+sun+star+rendering+XParametericPolyPolygon2DFactory.idl
deleted file mode 100644
index f77e24a3a1bf..000000000000
--- a/editors/openoffice-2.0-devel/files/patch-offapi+drafts+com+sun+star+rendering+XParametericPolyPolygon2DFactory.idl
+++ /dev/null
@@ -1,32 +0,0 @@
-IZ and CWS
-o http://www.openoffice.org/issues/show_bug.cgi?id=41006
-o CWS sdksample
-
-offapi/drafts/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl
-contains an illigal char
-
-Index: offapi/drafts/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl
-===================================================================
-RCS file: /cvs/api/offapi/drafts/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl,v
-retrieving revision 1.4
-diff -u -r1.4 XParametricPolyPolygon2DFactory.idl
---- offapi/drafts/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl 13 Jan 2005 18:04:20 -0000 1.4
-+++ offapi/drafts/com/sun/star/rendering/XParametricPolyPolygon2DFactory.idl 19 Jan 2005 23:45:31 -0000
-@@ -109,7 +109,7 @@
- linearly between center and endColor via concentric ellipses
- around the center point. Note that the absolute size of the
- rectangle given at this method does not matter, only it's
-- aspect ratio: if this aspect ratio ís 1, the gradient is
-+ aspect ratio: if this aspect ratio is 1, the gradient is
- circular. If it's not 1, the gradient is elliptical, with the
- special twist that the aspect ratio is maintained also for the
- center color: the gradient will not collapse into a single
-@@ -124,7 +124,7 @@
- linearly between center and endColor via rectangular boxes
- around the center point. Note that the absolute size of the
- rectangle given at this method does not matter, only it's
-- aspect ratio: if this aspect ratio ís 1, the gradient is
-+ aspect ratio: if this aspect ratio is 1, the gradient is
- quadratic. If it's not 1, the gradient is rectangular, with
- the special twist that the aspect ratio is maintained also for
- the center color: the gradient will not collapse into a single
diff --git a/editors/openoffice-2.0-devel/files/patch-project-jvmfwk b/editors/openoffice-2.0-devel/files/patch-project-jvmfwk
deleted file mode 100644
index 65325d6056e8..000000000000
--- a/editors/openoffice-2.0-devel/files/patch-project-jvmfwk
+++ /dev/null
@@ -1,67 +0,0 @@
-#iZ and CWS
-o http://www.openoffice.org/issues/show_bug.cgi?id=40180
-o jre5issues
-Description
-
-Vendor name of FreeBSD's Java
-(http://www.freebsd.org/cgi/cvsweb.cgi/ports/java/jdk14/)
-is Sun Microsystems Inc. so that we can use as Linux version
-only difference is the out put of java -version
-java version "1.4.2-p6"
-trailing -pXX is different.
-
-Index: jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx
-===================================================================
-RCS file: /cvs/udk/jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx,v
-retrieving revision 1.5
-diff -u -r1.5 sunversion.cxx
---- jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx 16 Dec 2004 11:45:15 -0000 1.5
-+++ jvmfwk/plugins/sunmajor/pluginlib/sunversion.cxx 30 Dec 2004 12:55:14 -0000
-@@ -231,6 +231,8 @@
- m_preRelease = getPreRelease(pCur);
- if (m_preRelease == Rel_NONE)
- return false;
-+ if (m_preRelease == Rel_FreeBSD)
-+ return true;
- }
- else
- {
-@@ -267,6 +269,20 @@
- return Rel_RC2;
- else if (! strcmp(szRelease, "rc3"))
- return Rel_RC3;
-+ else if (! strcmp(szRelease, "p5"))
-+ return Rel_FreeBSD;
-+ else if (! strcmp(szRelease, "p6"))
-+ return Rel_FreeBSD;
-+ else if (! strcmp(szRelease, "p7"))
-+ return Rel_FreeBSD;
-+ else if (! strcmp(szRelease, "p8"))
-+ return Rel_FreeBSD;
-+ else if (! strcmp(szRelease, "p9"))
-+ return Rel_FreeBSD;
-+ else if (! strcmp(szRelease, "p10"))
-+ return Rel_FreeBSD;
-+ else if (! strcmp(szRelease, "p11"))
-+ return Rel_FreeBSD;
- else
- return Rel_NONE;
- }
-Index: jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx
-===================================================================
-RCS file: /cvs/udk/jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx,v
-retrieving revision 1.5
-diff -u -r1.5 sunversion.hxx
---- jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx 16 Dec 2004 11:45:27 -0000 1.5
-+++ jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx 30 Dec 2004 12:55:14 -0000
-@@ -107,6 +107,10 @@
- Rel_RC1,
- Rel_RC2,
- Rel_RC3
-+#if defined(FREEBSD)
-+ ,
-+ Rel_FreeBSD
-+#endif
- };
-
- //contains major,minor,micro,update
diff --git a/editors/openoffice-2.0-devel/files/patch-psprint+source+helper+strhelper.cxx b/editors/openoffice-2.0-devel/files/patch-psprint+source+helper+strhelper.cxx
deleted file mode 100644
index 428681897449..000000000000
--- a/editors/openoffice-2.0-devel/files/patch-psprint+source+helper+strhelper.cxx
+++ /dev/null
@@ -1,24 +0,0 @@
-#iZ and CWS
-o http://www.openoffice.org/issues/show_bug.cgi?id=27753
-o vcl34
-
-Description
-The isnan() macro is a new feature of C99 and not yet part of C++.
-Index: source/helper/strhelper.cxx
-===================================================================
-RCS file: /cvs/gsl/psprint/source/helper/strhelper.cxx,v
-retrieving revision 1.6
-diff -u -r1.6 strhelper.cxx
---- psprint/source/helper/strhelper.cxx 30 Mar 2004 13:48:06 -0000 1.6
-+++ psprint/source/helper/strhelper.cxx 13 Apr 2004 22:26:11 -0000
-@@ -67,6 +67,10 @@
- #include <cmath> // for isnan
- #include <cstring>
-
-+#if defined (FREEBSD)
-+using namespace __gnu_cxx; //for isnan
-+#endif
-+
- namespace psp {
-
- inline int isSpace( char cChar )
diff --git a/editors/openoffice-2.0-devel/files/patch-scp2+source+ooo+file_ooo.scp b/editors/openoffice-2.0-devel/files/patch-scp2+source+ooo+file_ooo.scp
deleted file mode 100644
index ada03742b6cb..000000000000
--- a/editors/openoffice-2.0-devel/files/patch-scp2+source+ooo+file_ooo.scp
+++ /dev/null
@@ -1,25 +0,0 @@
-o #iZ XXXX
-o CWS nativefixer3
-http://porting.openoffice.org/servlets/ReadMsg?list=dev&msgNo=15066
-
-Index: scp2/source/ooo/file_ooo.scp
-===================================================================
-RCS file: /cvs/installation/scp2/source/ooo/file_ooo.scp,v
-retrieving revision 1.66
-diff -u -r1.66 file_ooo.scp
---- scp2/source/ooo/file_ooo.scp 21 Jan 2005 12:14:20 -0000 1.66
-+++ scp2/source/ooo/file_ooo.scp 28 Jan 2005 08:29:31 -0000
-@@ -371,13 +371,6 @@
- Styles = (PACKED);
- End
-
--File gid_File_Bin_Gnome_Set_Default_Application
-- BIN_FILE_BODY;
-- Dir = gid_Dir_Program;
-- Name = "gnome-set-default-application";
-- Styles = (PACKED);
--End
--
- #endif
-
- File gid_File_Bin_Senddoc