123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- menu "PHP Extensions"
- config BR2_PACKAGE_PHP_EXT_SOCKETS
- bool "socket"
- help
- Sockets support
- config BR2_PACKAGE_PHP_EXT_POSIX
- bool "posix"
- default y
- help
- POSIX support
- config BR2_PACKAGE_PHP_EXT_SPL
- bool "SPL"
- default y
- help
- SPL support
- config BR2_PACKAGE_PHP_EXT_SESSION
- bool "Session"
- default y
- help
- Session support
- config BR2_PACKAGE_PHP_EXT_OPENSSL
- bool "openssl"
- depends on BR2_PACKAGE_OPENSSL
- help
- openssl support
- config BR2_PACKAGE_PHP_EXT_LIBXML2
- bool "xml2"
- depends on BR2_PACKAGE_LIBXML2
- default y
- help
- xml support
- config BR2_PACKAGE_PHP_EXT_SIMPLEXML
- bool "simplexml"
- select BR2_PACKAGE_PHP_EXT_LIBXML2
- help
- SimpleXML support
- config BR2_PACKAGE_PHP_EXT_ZLIB
- bool "zlib"
- depends on BR2_PACKAGE_ZLIB
- default y
- help
- zlib support
- config BR2_PACKAGE_PHP_EXT_EXIF
- bool "EXIF"
- depends on BR2_PACKAGE_PHP
- help
- EXIF support
- config BR2_PACKAGE_PHP_EXT_FTP
- bool "FTP"
- depends on BR2_PACKAGE_PHP
- help
- FTP Support
- config BR2_PACKAGE_PHP_EXT_GETTEXT
- bool "gettext"
- depends on BR2_PACKAGE_PHP && BR2_PACKAGE_GETTEXT
- help
- gettext support
- config BR2_PACKAGE_PHP_EXT_GMP
- bool "gmp"
- depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBGMP
- help
- GMP support
- config BR2_PACKAGE_PHP_EXT_JSON
- bool "JSON"
- depends on BR2_PACKAGE_PHP
- help
- JSON support
- config BR2_PACKAGE_PHP_EXT_READLINE
- bool "readline"
- depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_READLINE
- help
- readline support
- config BR2_PACKAGE_PHP_EXT_NCURSES
- bool "ncurses"
- depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_NCURSES
- help
- ncurses support
- config BR2_PACKAGE_PHP_EXT_SYSVMSG
- bool "sysvmsg - System V Message queue"
- depends on BR2_PACKAGE_PHP
- help
- System V Message queue support
- config BR2_PACKAGE_PHP_EXT_SYSVSEM
- bool "sysvsem - System V Semaphores"
- depends on BR2_PACKAGE_PHP
- help
- System V Sempahore support
- config BR2_PACKAGE_PHP_EXT_SYSVSHM
- bool "sysvshm - System V Shared memory"
- depends on BR2_PACKAGE_PHP
- help
- System V Shared memory support
- config BR2_PACKAGE_PHP_EXT_ZIP
- bool "zip"
- depends on BR2_PACKAGE_PHP
- help
- Zip Support
- config BR2_PACKAGE_PHP_EXT_FILTER
- bool "filter"
- depends on BR2_PACKAGE_PHP
- help
- Input filter support
- comment "Database extensions"
- config BR2_PACKAGE_PHP_EXT_SQLITE
- bool "sqlite"
- depends on BR2_PACKAGE_PHP
- default y
- help
- SQLite
- config BR2_PACKAGE_PHP_EXT_SQLITE_UTF8
- bool "sqlite UTF8 support"
- depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_SQLITE
- help
- UTF8 Support for sqlite
- config BR2_PACKAGE_PHP_EXT_PDO
- bool "PDO"
- depends on BR2_PACKAGE_PHP
- default y
- help
- PDO support
- config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
- bool "PDO_SQLite"
- depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
- default y
- help
- SQLite support for PDO
- config BR2_PACKAGE_PHP_EXT_PDO_MYSQL
- bool "PDO_MySQL"
- depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
- select BR2_PACKAGE_MYSQL_CLIENT
- help
- MySQL support for PDO
- endmenu
|