mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-07 10:27:42 +00:00
php: Config.ext is in a BR2_PACKAGE_PHP conditional, so get rid of depends
Hunks missing from r25406.
This commit is contained in:
parent
4bf006c12c
commit
416c626142
@ -51,73 +51,65 @@ config BR2_PACKAGE_PHP_EXT_ZLIB
|
|||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_EXIF
|
config BR2_PACKAGE_PHP_EXT_EXIF
|
||||||
bool "EXIF"
|
bool "EXIF"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
EXIF support
|
EXIF support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_FTP
|
config BR2_PACKAGE_PHP_EXT_FTP
|
||||||
bool "FTP"
|
bool "FTP"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
FTP Support
|
FTP Support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_GETTEXT
|
config BR2_PACKAGE_PHP_EXT_GETTEXT
|
||||||
bool "gettext"
|
bool "gettext"
|
||||||
depends on BR2_PACKAGE_PHP && BR2_PACKAGE_GETTEXT
|
depends on BR2_PACKAGE_GETTEXT
|
||||||
help
|
help
|
||||||
gettext support
|
gettext support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_GMP
|
config BR2_PACKAGE_PHP_EXT_GMP
|
||||||
bool "gmp"
|
bool "gmp"
|
||||||
depends on BR2_PACKAGE_PHP && BR2_PACKAGE_LIBGMP
|
depends on BR2_PACKAGE_LIBGMP
|
||||||
help
|
help
|
||||||
GMP support
|
GMP support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_JSON
|
config BR2_PACKAGE_PHP_EXT_JSON
|
||||||
bool "JSON"
|
bool "JSON"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
JSON support
|
JSON support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_READLINE
|
config BR2_PACKAGE_PHP_EXT_READLINE
|
||||||
bool "readline"
|
bool "readline"
|
||||||
depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_READLINE
|
depends on (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_READLINE
|
||||||
help
|
help
|
||||||
readline support
|
readline support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_NCURSES
|
config BR2_PACKAGE_PHP_EXT_NCURSES
|
||||||
bool "ncurses"
|
bool "ncurses"
|
||||||
depends on BR2_PACKAGE_PHP && (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_NCURSES
|
depends on (BR2_PACKAGE_PHP_CLI || BR2_PACKAGE_PHP_CGI) && BR2_PACKAGE_NCURSES
|
||||||
help
|
help
|
||||||
ncurses support
|
ncurses support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SYSVMSG
|
config BR2_PACKAGE_PHP_EXT_SYSVMSG
|
||||||
bool "sysvmsg - System V Message queue"
|
bool "sysvmsg - System V Message queue"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
System V Message queue support
|
System V Message queue support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SYSVSEM
|
config BR2_PACKAGE_PHP_EXT_SYSVSEM
|
||||||
bool "sysvsem - System V Semaphores"
|
bool "sysvsem - System V Semaphores"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
System V Sempahore support
|
System V Sempahore support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SYSVSHM
|
config BR2_PACKAGE_PHP_EXT_SYSVSHM
|
||||||
bool "sysvshm - System V Shared memory"
|
bool "sysvshm - System V Shared memory"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
System V Shared memory support
|
System V Shared memory support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_ZIP
|
config BR2_PACKAGE_PHP_EXT_ZIP
|
||||||
bool "zip"
|
bool "zip"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
Zip Support
|
Zip Support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_FILTER
|
config BR2_PACKAGE_PHP_EXT_FILTER
|
||||||
bool "filter"
|
bool "filter"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
help
|
help
|
||||||
Input filter support
|
Input filter support
|
||||||
|
|
||||||
@ -125,34 +117,32 @@ comment "Database extensions"
|
|||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SQLITE
|
config BR2_PACKAGE_PHP_EXT_SQLITE
|
||||||
bool "sqlite"
|
bool "sqlite"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
default y
|
default y
|
||||||
help
|
help
|
||||||
SQLite
|
SQLite
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_SQLITE_UTF8
|
config BR2_PACKAGE_PHP_EXT_SQLITE_UTF8
|
||||||
bool "sqlite UTF8 support"
|
bool "sqlite UTF8 support"
|
||||||
depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_SQLITE
|
depends on BR2_PACKAGE_PHP_EXT_SQLITE
|
||||||
help
|
help
|
||||||
UTF8 Support for sqlite
|
UTF8 Support for sqlite
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_PDO
|
config BR2_PACKAGE_PHP_EXT_PDO
|
||||||
bool "PDO"
|
bool "PDO"
|
||||||
depends on BR2_PACKAGE_PHP
|
|
||||||
default y
|
default y
|
||||||
help
|
help
|
||||||
PDO support
|
PDO support
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
|
config BR2_PACKAGE_PHP_EXT_PDO_SQLITE
|
||||||
bool "PDO_SQLite"
|
bool "PDO_SQLite"
|
||||||
depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
|
depends on BR2_PACKAGE_PHP_EXT_PDO
|
||||||
default y
|
default y
|
||||||
help
|
help
|
||||||
SQLite support for PDO
|
SQLite support for PDO
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_EXT_PDO_MYSQL
|
config BR2_PACKAGE_PHP_EXT_PDO_MYSQL
|
||||||
bool "PDO_MySQL"
|
bool "PDO_MySQL"
|
||||||
depends on BR2_PACKAGE_PHP && BR2_PACKAGE_PHP_EXT_PDO
|
depends on BR2_PACKAGE_PHP_EXT_PDO
|
||||||
select BR2_PACKAGE_MYSQL_CLIENT
|
select BR2_PACKAGE_MYSQL_CLIENT
|
||||||
help
|
help
|
||||||
MySQL support for PDO
|
MySQL support for PDO
|
||||||
|
Loading…
x
Reference in New Issue
Block a user