diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2014-10-05 19:38:59 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-26 22:31:20 +0100 |
commit | e74d197cbd2a6989aa6d4ce9c87470d9e5585722 (patch) | |
tree | 1f9fc86d0ffc871dee84b92887d2bef04011dba9 /package/php/php.mk | |
parent | 7ca97b357f336db85c9f76d6443515165e4f1077 (diff) | |
download | buildroot-e74d197cbd2a6989aa6d4ce9c87470d9e5585722.tar.gz buildroot-e74d197cbd2a6989aa6d4ce9c87470d9e5585722.zip |
package/php: Add support for mbstring module
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/php/php.mk')
-rw-r--r-- | package/php/php.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/php/php.mk b/package/php/php.mk index 30c8d02f13..9456f1c9b2 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -75,6 +75,7 @@ PHP_CONF_OPTS += $(if $(BR2_PACKAGE_PHP_EXT_SOCKETS),--enable-sockets) \ $(if $(BR2_PACKAGE_PHP_EXT_CALENDAR),--enable-calendar) \ $(if $(BR2_PACKAGE_PHP_EXT_FILEINFO),--enable-fileinfo) \ $(if $(BR2_PACKAGE_PHP_EXT_BCMATH),--enable-bcmath) \ + $(if $(BR2_PACKAGE_PHP_EXT_MBSTRING),--enable-mbstring) \ $(if $(BR2_PACKAGE_PHP_EXT_PHAR),--enable-phar) ifeq ($(BR2_PACKAGE_PHP_EXT_MCRYPT),y) |