* [PATCH meta-networking] modphp: enable endian check
@ 2013-12-10 8:32 Chong.Lu
2013-12-10 9:34 ` Lu Chong
0 siblings, 1 reply; 2+ messages in thread
From: Chong.Lu @ 2013-12-10 8:32 UTC (permalink / raw)
To: openembedded-devel
From: Chong Lu <Chong.Lu@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@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
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH meta-networking] modphp: enable endian check
2013-12-10 8:32 [PATCH meta-networking] modphp: enable endian check Chong.Lu
@ 2013-12-10 9:34 ` Lu Chong
0 siblings, 0 replies; 2+ messages in thread
From: Lu Chong @ 2013-12-10 9:34 UTC (permalink / raw)
To: openembedded-devel
Please ignore this one. I will resend.
Best Regards
Chong
On 12/10/2013 04:32 PM, Chong.Lu@windriver.com wrote:
> From: Chong Lu <Chong.Lu@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@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"
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-12-10 9:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-10 8:32 [PATCH meta-networking] modphp: enable endian check Chong.Lu
2013-12-10 9:34 ` Lu Chong
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.