mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-31 15:07:43 +00:00
php: bump to version 5.5.7
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
7f05f73e44
commit
76ad808a50
@ -91,17 +91,6 @@ config BR2_PACKAGE_PHP_EXT_DBA_INI
|
|||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SQLITE
|
|
||||||
bool "SQLite"
|
|
||||||
help
|
|
||||||
Legacy SQLite2 support
|
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SQLITE_UTF8
|
|
||||||
bool "sqlite UTF8 support"
|
|
||||||
depends on BR2_PACKAGE_PHP_EXT_SQLITE
|
|
||||||
help
|
|
||||||
UTF8 support for sqlite
|
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_MYSQL
|
config BR2_PACKAGE_PHP_EXT_MYSQL
|
||||||
bool "Mysql"
|
bool "Mysql"
|
||||||
depends on BR2_INSTALL_LIBSTDCPP
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
@ -227,6 +216,7 @@ config BR2_PACKAGE_PHP_EXT_FTP
|
|||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SNMP
|
config BR2_PACKAGE_PHP_EXT_SNMP
|
||||||
bool "SNMP"
|
bool "SNMP"
|
||||||
|
depends on BR2_USE_MMU # netsnmp fork()
|
||||||
select BR2_PACKAGE_NETSNMP
|
select BR2_PACKAGE_NETSNMP
|
||||||
select BR2_PACKAGE_NETSNMP_ENABLE_MIBS
|
select BR2_PACKAGE_NETSNMP_ENABLE_MIBS
|
||||||
help
|
help
|
||||||
@ -234,13 +224,18 @@ config BR2_PACKAGE_PHP_EXT_SNMP
|
|||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SOCKETS
|
config BR2_PACKAGE_PHP_EXT_SOCKETS
|
||||||
bool "sockets"
|
bool "sockets"
|
||||||
|
depends on BR2_INET_IPV6
|
||||||
help
|
help
|
||||||
Sockets support
|
Sockets support
|
||||||
|
|
||||||
|
comment "sockets support needs a toolchain w/ IPv6"
|
||||||
|
depends on !BR2_INET_IPV6
|
||||||
|
|
||||||
comment "Process Control"
|
comment "Process Control"
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_PCNTL
|
config BR2_PACKAGE_PHP_EXT_PCNTL
|
||||||
bool "PCNTL"
|
bool "PCNTL"
|
||||||
|
depends on BR2_USE_MMU # fork()
|
||||||
help
|
help
|
||||||
Process control support
|
Process control support
|
||||||
|
|
||||||
|
@ -4,12 +4,13 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
PHP_VERSION = 5.3.27
|
PHP_VERSION = 5.5.7
|
||||||
PHP_SOURCE = php-$(PHP_VERSION).tar.xz
|
PHP_SOURCE = php-$(PHP_VERSION).tar.xz
|
||||||
PHP_SITE = http://www.php.net/distributions
|
PHP_SITE = http://www.php.net/distributions
|
||||||
PHP_INSTALL_STAGING = YES
|
PHP_INSTALL_STAGING = YES
|
||||||
PHP_INSTALL_STAGING_OPT = INSTALL_ROOT=$(STAGING_DIR) install
|
PHP_INSTALL_STAGING_OPT = INSTALL_ROOT=$(STAGING_DIR) install
|
||||||
PHP_INSTALL_TARGET_OPT = INSTALL_ROOT=$(TARGET_DIR) install
|
PHP_INSTALL_TARGET_OPT = INSTALL_ROOT=$(TARGET_DIR) install
|
||||||
|
PHP_DEPENDENCIES = host-pkgconf
|
||||||
PHP_LICENSE = PHP
|
PHP_LICENSE = PHP
|
||||||
PHP_LICENSE_FILES = LICENSE
|
PHP_LICENSE_FILES = LICENSE
|
||||||
PHP_CONF_OPT = --mandir=/usr/share/man \
|
PHP_CONF_OPT = --mandir=/usr/share/man \
|
||||||
@ -125,17 +126,6 @@ ifeq ($(BR2_PACKAGE_PHP_EXT_READLINE),y)
|
|||||||
PHP_DEPENDENCIES += readline
|
PHP_DEPENDENCIES += readline
|
||||||
endif
|
endif
|
||||||
|
|
||||||
### Legacy sqlite2 support
|
|
||||||
ifeq ($(BR2_PACKAGE_PHP_EXT_SQLITE),y)
|
|
||||||
PHP_CONF_OPT += --with-sqlite
|
|
||||||
ifneq ($(BR2_LARGEFILE),y)
|
|
||||||
PHP_CFLAGS += -DSQLITE_DISABLE_LFS
|
|
||||||
endif
|
|
||||||
ifeq ($(BR2_PACKAGE_PHP_EXT_SQLITE_UTF8),y)
|
|
||||||
PHP_CONF_OPT += --enable-sqlite-utf8
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
### Native MySQL extensions
|
### Native MySQL extensions
|
||||||
ifeq ($(BR2_PACKAGE_PHP_EXT_MYSQL),y)
|
ifeq ($(BR2_PACKAGE_PHP_EXT_MYSQL),y)
|
||||||
PHP_CONF_OPT += --with-mysql=$(STAGING_DIR)/usr
|
PHP_CONF_OPT += --with-mysql=$(STAGING_DIR)/usr
|
||||||
|
Loading…
x
Reference in New Issue
Block a user