summaryrefslogtreecommitdiff
path: root/x11-toolkits/wxgtk28/files/patch-src-common-string.cpp
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2005-05-12 17:45:30 +0000
committerMax Khon <fjoe@FreeBSD.org>2005-05-12 17:45:30 +0000
commit54c086c129c88d664ff3008d1336164547b80e66 (patch)
treecd5089fa2b5950af1a9f7fac449022ee5be052d2 /x11-toolkits/wxgtk28/files/patch-src-common-string.cpp
parentmark it BROKEN (diff)
Finish repo-move of wxgtk2*-devel ports to wxgtk26* and update to the
latest stable release wxWidgets 2.6.0.
Diffstat (limited to 'x11-toolkits/wxgtk28/files/patch-src-common-string.cpp')
-rw-r--r--x11-toolkits/wxgtk28/files/patch-src-common-string.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11-toolkits/wxgtk28/files/patch-src-common-string.cpp b/x11-toolkits/wxgtk28/files/patch-src-common-string.cpp
deleted file mode 100644
index f88da4cc4be9..000000000000
--- a/x11-toolkits/wxgtk28/files/patch-src-common-string.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/common/string.cpp.orig Mon Feb 21 15:53:48 2005
-+++ src/common/string.cpp Tue Feb 22 01:39:54 2005
-@@ -39,6 +39,7 @@
- #endif
-
- #include <ctype.h>
-+#include <errno.h>
- #include <string.h>
- #include <stdlib.h>
-
-@@ -1956,6 +1957,9 @@
- // ok, there was enough space
- break;
- }
-+
-+ if (errno != EOVERFLOW)
-+ break;
-
- // still not enough, double it again
- size *= 2;