Solved php5 update

Update lang/php5 from 5.4.32 to version 5.4.33, don't know if it's a bug:

Exits to compile with clang (on FreeBSD-9.3) with:

Code:
ext/mysqlnd/mysqlnd_ps_codec.o: In function `ps_fetch_float':
mysqlnd_ps_codec.c:(.text+0xa3c): undefined reference to `__extendsfsd'
mysqlnd_ps_codec.c:(.text+0xa41): undefined reference to `__extendsddf'
*** [sapi/cgi/php-cgi] Error code 1
ext/mysqlnd/mysqlnd_ps_codec.o: In function `ps_fetch_float':
mysqlnd_ps_codec.c:(.text+0xa3c): undefined reference to `__extendsfsd'
mysqlnd_ps_codec.c:(.text+0xa41): undefined reference to `__extendsddf'
*** [sapi/cli/php] Error code 1
ext/mysqlnd/mysqlnd_ps_codec.o: In function `ps_fetch_float':
mysqlnd_ps_codec.c:(.text+0xa3c): undefined reference to `__extendsfsd'
mysqlnd_ps_codec.c:(.text+0xa41): undefined reference to `__extendsddf'
*** [sapi/fpm/php-fpm] Error code 1

but compiles mit gcc48 without problems.
 
Re: php5 update

Only this

Code:
WITH_PKGNG=YES
WITH_NEW_XORG=YES
#JAVA_PREFERRED_PORTS=JAVA_PORT_NATIVE_OPENJDK_JDK_1_6
DEFAULT_VERSIONS=apache=2.2
WITH_BDB_VER=5
 
Re: php5 update

Seems to be an include-error: if I do make install clean CFLAGS=-I/usr/local/include/php/ext/mysqlnd/\* or better make install clean CFLAGS=-I/work/php-5.4.33/ext/mysqlnd/ it compiles with clang.
 
Last edited by a moderator:
Back
Top