summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-2.0/files/patch-psprint+source+helper+strhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editors/openoffice.org-2.0/files/patch-psprint+source+helper+strhelper.cxx')
-rw-r--r--editors/openoffice.org-2.0/files/patch-psprint+source+helper+strhelper.cxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/editors/openoffice.org-2.0/files/patch-psprint+source+helper+strhelper.cxx b/editors/openoffice.org-2.0/files/patch-psprint+source+helper+strhelper.cxx
deleted file mode 100644
index 186ff5e741b2..000000000000
--- a/editors/openoffice.org-2.0/files/patch-psprint+source+helper+strhelper.cxx
+++ /dev/null
@@ -1,21 +0,0 @@
-http://www.openoffice.org/issues/show_bug.cgi?id=27753
-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 )