From:             paabulaabu at gmail dot com
Operating system: Ubuntu 9.04
PHP version:      5.2.9
PHP Bug Type:     *Compile Issues
Bug description:  ./configure --with-something-containing fails when 
LANG=et_EE.UTF-8

Description:
------------
Solution: use [:alpha:] instead a-zA-z in various regular expressions.

Bug:
:/usr/src/php-5.2.9$ export LANG=et_EE.UTF-8
:/usr/src/php-5.2.9$ ./configure --with-curl
configure: error: curl: invalid package name


buggy code part in "configure" script:

    if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
      { echo "configure: error: $ac_package: invalid package name" 1>&2;
exit 1; }
    fi

bug happens because "Z" isnt the final letter in estonian alphabet.

proof of concept in shell:
:~$ export LANG=en_GB.UTF-8
:~$ echo abcdefghijklmnopqrstuvõäöüABCDEFGHIJLKMNOPQRSTUVÕÄÖÜ123456789
|sed 's/[-_[:alpha:]0-9]//g'

:~$ echo abcdefghijklmnopqrstuvõäöüABCDEFGHIJLKMNOPQRSTUVÕÄÖÜ123456789
|sed 's/[-_a-zA-Z0-9]//g'

:~$ export LANG=et_EE.UTF-8
:~$ echo abcdefghijklmnopqrstuvõäöüABCDEFGHIJLKMNOPQRSTUVÕÄÖÜ123456789
|sed 's/[-_a-zA-Z0-9]//g'
tuvõäöüTUVÕÄÖÜ
:~$ echo abcdefghijklmnopqrstuvõäöüABCDEFGHIJLKMNOPQRSTUVÕÄÖÜ123456789
|sed 's/[-_[:alpha:]0-9]//g'

pri...@vidrik:~$


-- 
Edit bug report at http://bugs.php.net/?id=48098&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=48098&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=48098&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=48098&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=48098&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=48098&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=48098&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=48098&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=48098&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=48098&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=48098&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=48098&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=48098&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=48098&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=48098&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=48098&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=48098&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=48098&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=48098&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=48098&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=48098&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=48098&r=mysqlcfg

Reply via email to