diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2016-05-23 15:51:32 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-31 21:31:34 +0200 |
commit | 6f6b4dc16b07dcf901fc986b6aa22f67e4280f13 (patch) | |
tree | 6f0797c3295c5102b945512e0f9339f70b192795 /package/php/php.mk | |
parent | dd2e328089c12685400bd124e70ff6a28cac025a (diff) | |
download | buildroot-6f6b4dc16b07dcf901fc986b6aa22f67e4280f13.tar.gz buildroot-6f6b4dc16b07dcf901fc986b6aa22f67e4280f13.zip |
php: bump version to 7.0.6
Remove MySQL legacy extension.
Remove incompatible external modules:
- php-gnupg
- php-memcached
- php-ssh2
- php-yaml
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/php/php.mk')
-rw-r--r-- | package/php/php.mk | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/package/php/php.mk b/package/php/php.mk index d58c4fd1a5..fbdb73875d 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -4,7 +4,7 @@ # ################################################################################ -PHP_VERSION = 5.6.21 +PHP_VERSION = 7.0.6 PHP_SITE = http://www.php.net/distributions PHP_SOURCE = php-$(PHP_VERSION).tar.xz PHP_INSTALL_STAGING = YES @@ -178,11 +178,7 @@ PHP_CONF_OPTS += --with-readline=$(STAGING_DIR)/usr PHP_DEPENDENCIES += readline endif -### Native MySQL extensions -ifeq ($(BR2_PACKAGE_PHP_EXT_MYSQL),y) -PHP_CONF_OPTS += --with-mysql=$(STAGING_DIR)/usr -PHP_DEPENDENCIES += mysql -endif +### Native SQL extensions ifeq ($(BR2_PACKAGE_PHP_EXT_MYSQLI),y) PHP_CONF_OPTS += --with-mysqli=$(STAGING_DIR)/usr/bin/mysql_config PHP_DEPENDENCIES += mysql |