gwynne                                   Sun, 07 Aug 2011 15:09:42 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=314432

Log:
fix for bug #55019

Bug: https://bugs.php.net/55019 (Assigned) undefined symbol: 
grapheme_extract_count_iter in Unknown on line 0 
      
Changed paths:
    U   php/php-src/branches/PHP_5_4/ext/intl/grapheme/grapheme_string.c

Modified: php/php-src/branches/PHP_5_4/ext/intl/grapheme/grapheme_string.c
===================================================================
--- php/php-src/branches/PHP_5_4/ext/intl/grapheme/grapheme_string.c    
2011-08-07 15:07:53 UTC (rev 314431)
+++ php/php-src/branches/PHP_5_4/ext/intl/grapheme/grapheme_string.c    
2011-08-07 15:09:42 UTC (rev 314432)
@@ -677,7 +677,7 @@
 /* }}} */

 /* {{{ grapheme_extract_charcount_iter - grapheme iterator for 
grapheme_extract MAXCHARS */
-inline int32_t
+static inline int32_t
 grapheme_extract_charcount_iter(UBreakIterator *bi, int32_t csize, unsigned 
char *pstr, int32_t str_len)
 {
        int pos = 0, prev_pos = 0;
@@ -714,7 +714,7 @@
 /* }}} */

 /* {{{ grapheme_extract_bytecount_iter - grapheme iterator for 
grapheme_extract MAXBYTES */
-inline int32_t
+static inline int32_t
 grapheme_extract_bytecount_iter(UBreakIterator *bi, int32_t bsize, unsigned 
char *pstr, int32_t str_len)
 {
        int pos = 0, prev_pos = 0;
@@ -748,7 +748,7 @@
 /* }}} */

 /* {{{ grapheme_extract_count_iter - grapheme iterator for grapheme_extract 
COUNT */
-inline int32_t
+static inline int32_t
 grapheme_extract_count_iter(UBreakIterator *bi, int32_t size, unsigned char 
*pstr, int32_t str_len)
 {
        int pos = 0, next_pos = 0;

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to