From:             ajmiller at engr dot psu dot edu
Operating system: Mac OS X Server 10.5.6
PHP version:      5.3.0RC2
PHP Bug Type:     Compile Failure
Bug description:  Compile failure with mysqlnd similar to Bug #47992

Description:
------------
Compiling with mysqlnd drivers failed. 
System: Mac OS X Server 10.5.6 on a G5 iMac with XCode 3.1.2

This bug is similar to that described in Bug #47992
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c:82: error: 'MYSQLND_LLU_SPEC' 
undeclared (first use in this function)
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c:111: error: 'MYSQLND_LL_SPEC' 
undeclared (first use in this function)

changing line 177 in ext/mysqlnd/mysqlnd_portability.h from
#if __powerpc64__ to #if __powerpc64__ || __ppc64__
and line 192 from 
#if __powerpc__  && !__powerpc64__ 
 to 
#if (__powerpc__ || __ppc__ ) && !(__powerpc64__ || __ppc64__)
resolves the error.






Reproduce code:
---------------
./configure '--prefix=/usr/local' '--mandir=/usr/share/man'
'--infodir=/usr/share/info' '--with-apxs2=/usr/sbin/apxs'
'--with-ldap=/usr' '--with-kerberos=/usr' '--enable-cli'
'--with-zlib-dir=/usr' '--enable-trans-sid' '--with-xml' '--enable-exif'
'--enable-ftp' '--enable-mbstring' '--enable-mbregex' '--enable-dbx'
'--enable-sockets' '--with-iodbc=/usr' '--with-curl=/usr'
'--with-config-file-path=/etc' '--sysconfdir=/private/etc'
'--with-mysql-sock=/var/mysql' '--with-mysqli=mysqlnd'
'--with-mysql=mysqlnd' '--with-openssl' '--with-xmlrpc' '--with-xsl=/usr'
'--with-pear'



Expected result:
----------------
Compile with out errors.

Actual result:
--------------
/bin/sh /Users/ajmiller/Desktop/php-5.3.0RC2/libtool --silent --
preserve-dup-deps --mode=compile gcc  -Iext/mysqlnd/ -
I/Users/ajmiller/Desktop/php-5.3.0RC2/ext/mysqlnd/ -DPHP_ATOM_INC -
I/Users/ajmiller/Desktop/php-5.3.0RC2/include -
I/Users/ajmiller/Desktop/php-5.3.0RC2/main -
I/Users/ajmiller/Desktop/php-5.3.0RC2 -I/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/ereg/regex -I/usr/include/libxml2 -
I/Users/ajmiller/Desktop/php-5.3.0RC2/ext/date/lib -
I/Users/ajmiller/Desktop/php-5.3.0RC2/ext/mbstring/oniguruma -
I/Users/ajmiller/Desktop/php-5.3.0RC2/ext/mbstring/libmbfl -
I/Users/ajmiller/Desktop/php-5.3.0RC2/ext/mbstring/libmbfl/mbfl -
I/Users/ajmiller/Desktop/php-5.3.0RC2/ext/sqlite3/libsqlite -
I/Users/ajmiller/Desktop/php-5.3.0RC2/TSRM -
I/Users/ajmiller/Desktop/php-5.3.0RC2/Zend  -no-cpp-precomp  -O2 -
I/usr/include -fvisibility=hidden  -c /Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c -o 
ext/mysqlnd/mysqlnd_ps_codec.lo 
In file included from /Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd.h:59,
                 from /Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c:23:
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_portability.h:471:1: warning: "float8get" 
redefined
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_portability.h:423:1: warning: this is the 
location of the previous definition
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_portability.h:472:1: warning: 
"float8store" redefined
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_portability.h:413:1: warning: this is the 
location of the previous definition
/Users/ajmiller/Desktop/php-5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c: 
In function 'ps_fetch_from_1_to_8_bytes':
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c:82: error: 'MYSQLND_LLU_SPEC' 
undeclared (first use in this function)
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c:82: error: (Each undeclared 
identifier is reported only once
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c:82: error: for each function 
it appears in.)
/Users/ajmiller/Desktop/php-
5.3.0RC2/ext/mysqlnd/mysqlnd_ps_codec.c:111: error: 'MYSQLND_LL_SPEC' 
undeclared (first use in this function)
make: *** [ext/mysqlnd/mysqlnd_ps_codec.lo] Error 1

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

Reply via email to