[oe] [PATCH meta-networking] modphp: enable endian check

Chong.Lu at windriver.com Chong.Lu at windriver.com
Tue Dec 10 08:32:04 UTC 2013


From: Chong Lu <Chong.Lu at windriver.com>

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 <Chong.Lu at windriver.com>
---
 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




More information about the Openembedded-devel mailing list