]> TLD Linux GIT Repositories - packages/gcc.git/blobdiff - gcc-prism.patch
- rel 9; add patch 14
[packages/gcc.git] / gcc-prism.patch
diff --git a/gcc-prism.patch b/gcc-prism.patch
new file mode 100644 (file)
index 0000000..e780d03
--- /dev/null
@@ -0,0 +1,60 @@
+--- gcc-4_5-branch/libjava/prims.cc    2010/04/06 11:07:48     157989
++++ gcc-4_5-branch/libjava/prims.cc    2011/11/24 07:23:16     181687
+@@ -38,7 +38,6 @@
+ #endif
+ #ifndef DISABLE_GETENV_PROPERTIES
+-#include <ctype.h>
+ #include <java-props.h>
+ #define PROCESS_GCJ_PROPERTIES process_gcj_properties()
+ #else
+@@ -985,6 +984,8 @@
+ #ifndef DISABLE_GETENV_PROPERTIES
++#define c_isspace(c) (memchr (" \t\n\r\v\f", c, 6) != NULL)
++
+ static char *
+ next_property_key (char *s, size_t *length)
+ {
+@@ -993,7 +994,7 @@
+   JvAssert (s);
+   // Skip over whitespace
+-  while (isspace (*s))
++  while (c_isspace (*s))
+     s++;
+   // If we've reached the end, return NULL.  Also return NULL if for
+@@ -1005,7 +1006,7 @@
+   // Determine the length of the property key.
+   while (s[l] != 0
+-       && ! isspace (s[l])
++       && ! c_isspace (s[l])
+        && s[l] != ':'
+        && s[l] != '=')
+     {
+@@ -1027,19 +1028,19 @@
+   JvAssert (s);
+-  while (isspace (*s))
++  while (c_isspace (*s))
+     s++;
+   if (*s == ':'
+       || *s == '=')
+     s++;
+-  while (isspace (*s))
++  while (c_isspace (*s))
+     s++;
+   // Determine the length of the property value.
+   while (s[l] != 0
+-       && ! isspace (s[l])
++       && ! c_isspace (s[l])
+        && s[l] != ':'
+        && s[l] != '=')
+     {