From: Chong Lu <[email protected]> Previously, modphp estimates endian on host rather than checks it on target. If the host is little-endian and the target is big-endian, modphp claims that endian is little. As a result, a memory location that it is not allowed to access when calling libphp5.so module on target. It will occur segmentation fault. This patch enables endian check support for modphp.
Signed-off-by: Chong Lu <[email protected]> --- recipes-php/modphp/modphp5.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-php/modphp/modphp5.inc b/recipes-php/modphp/modphp5.inc index 19f1be9..425faa2 100644 --- a/recipes-php/modphp/modphp5.inc +++ b/recipes-php/modphp/modphp5.inc @@ -44,6 +44,8 @@ EXTRA_OECONF = "--with-apxs2=${STAGING_BINDIR_CROSS}/apxs \ --enable-mbstring \ --with-config-file-path=${sysconfdir}/php/apache2-php5" +EXTRA_OECONF += "${@base_conditional('SITEINFO_ENDIANNESS', 'le', 'ac_cv_c_bigendian_php=no', 'ac_cv_c_bigendian_php=yes', d)}" + PACKAGECONFIG ??= "mysql" PACKAGECONFIG[mysql] = "--with-mysqli=${STAGING_BINDIR_CROSS}/mysql_config,--without-mysqli,mysql5" PACKAGECONFIG[pgsql] = "--with-pgsql=${STAGING_DIR_TARGET}${exec_prefix},--without-pgsql,mysql5" -- 1.7.9.5 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
