summaryrefslogtreecommitdiff
path: root/x11-toolkits/wxgtk29/files/patch-src-common-string.cpp
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2005-04-20 06:16:18 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2005-04-20 06:16:18 +0000
commit8673c7ec800a8bcc6da14c506081a3cb76e2b8ea (patch)
treead3f495c08f0cc331b6958d319f699d021175c19 /x11-toolkits/wxgtk29/files/patch-src-common-string.cpp
parentFix plist problems. (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_5_4_0'.release/5.4.0
Diffstat (limited to 'x11-toolkits/wxgtk29/files/patch-src-common-string.cpp')
-rw-r--r--x11-toolkits/wxgtk29/files/patch-src-common-string.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11-toolkits/wxgtk29/files/patch-src-common-string.cpp b/x11-toolkits/wxgtk29/files/patch-src-common-string.cpp
deleted file mode 100644
index f88da4cc4be9..000000000000
--- a/x11-toolkits/wxgtk29/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;