diff options
Diffstat (limited to 'package/php/php.mk')
-rw-r--r-- | package/php/php.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/php/php.mk b/package/php/php.mk index 92665b46b3..e310bd6052 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -19,6 +19,11 @@ PHP_CONF_OPT = --mandir=/usr/share/man \ --with-config-file-path=/etc \ --localstatedir=/var \ --disable-rpath +ifeq ($(BR2_ENDIAN),"BIG") +PHP_CONF_ENV = ac_cv_c_bigendian_php=yes +else +PHP_CONF_ENV = ac_cv_c_bigendian_php=no +endif PHP_CONFIG_SCRIPTS = php-config PHP_CFLAGS = $(TARGET_CFLAGS) |