Add xml extension to php-all-dev

This commit is contained in:
Ondřej Surý 2020-10-11 20:02:17 +02:00
parent 75f0e7d09b
commit 91a677f321
2 changed files with 3 additions and 1 deletions

2
debian/control vendored
View file

@ -54,8 +54,10 @@ Package: php-all-dev
Architecture: all
Depends: php7.4-dev,
php7.4-json,
php7.4-xml,
php8.0-dev,
php8.0-json,
php8.0-xml,
${misc:Depends}
Description: package depending on all supported PHP development packages
This package is a dependency package used as a build dependency for other

2
debian/rules vendored
View file

@ -14,7 +14,7 @@ PHP_SUPPORTED_VERSIONS := 7.4 8.0
PHP_BREAKS_VERSIONS := 5.6 7.0 7.1 7.2 7.3
, := ,
PHP_DEV_PACKAGES := $(addprefix php,$(addsuffix -dev$(,),$(PHP_SUPPORTED_VERSIONS))), $(addprefix php,$(addsuffix -json$(,),$(PHP_SUPPORTED_VERSIONS)))
PHP_DEV_PACKAGES := $(addprefix php,$(addsuffix -dev$(,),$(PHP_SUPPORTED_VERSIONS))), $(addprefix php,$(addsuffix -json$(,),$(PHP_SUPPORTED_VERSIONS))), $(addprefix php,$(addsuffix -xml$(,),$(PHP_SUPPORTED_VERSIONS)))
PHP_BREAKS_PACKAGES := $(addprefix php,$(addsuffix -common$(,),$(PHP_BREAKS_VERSIONS)))
PHP_COMMON_DIRS := $(addprefix /etc/php/,$(addsuffix /mods-available,$(PHP_SUPPORTED_VERSIONS)))