Commit e74d197c authored by Bernd Kuhls's avatar Bernd Kuhls Committed by Thomas Petazzoni
Browse files

package/php: Add support for mbstring module

parent 7ca97b35
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -192,6 +192,11 @@ comment "intl support needs a toolchain w/ C++, wchar, threads"
	depends on BR2_ARCH_HAS_ATOMICS
	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_PHP_EXT_MBSTRING
	bool "mbstring"
	help
	  multibyte string support

comment "Image processing"

config BR2_PACKAGE_PHP_EXT_EXIF
+1 −0
Original line number Diff line number Diff line
@@ -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)