diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-21 16:53:52 +0200 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2009-10-21 16:53:52 +0200 |
commit | d9cb7ebc9d52ee74172a93c256408293651a373a (patch) | |
tree | 13907a592a13cce4d6a9f28b0695ead4cbbde176 /recipes/php/php-5.2.6/string.c.patch | |
parent | 9043ab7d88211c9012519f434b4a145207f6e0a3 (diff) |
php: fixed build errors
Diffstat (limited to 'recipes/php/php-5.2.6/string.c.patch')
-rw-r--r-- | recipes/php/php-5.2.6/string.c.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes/php/php-5.2.6/string.c.patch b/recipes/php/php-5.2.6/string.c.patch new file mode 100644 index 0000000000..a24b887ac2 --- /dev/null +++ b/recipes/php/php-5.2.6/string.c.patch @@ -0,0 +1,21 @@ +Index: php-5.2.6/ext/standard/string.c +=================================================================== +--- php-5.2.6.orig/ext/standard/string.c ++++ php-5.2.6/ext/standard/string.c +@@ -592,14 +592,12 @@ PHP_FUNCTION(nl_langinfo) + #endif + #ifdef DECIMAL_POINT + case DECIMAL_POINT: +-#endif +-#ifdef RADIXCHAR ++#elif RADIXCHAR + case RADIXCHAR: + #endif + #ifdef THOUSANDS_SEP + case THOUSANDS_SEP: +-#endif +-#ifdef THOUSEP ++#elif THOUSEP + case THOUSEP: + #endif + #ifdef GROUPING |