check-setup: recommend exif extension

JPEG previews are not correctly oriented when exif is not enabled
along with other issues. There's no easy way to discover this either.

Signed-off-by: Varun Patil <varunpatil@ucla.edu>
pull/37397/head
Varun Patil 1 year ago
parent c3a39cbc75
commit 35ea5025dd

@ -724,6 +724,12 @@ Raw output
$recommendedPHPModules[] = 'sysvsem';
}
if (!extension_loaded('exif')) {
// used to extract metadata from images
// required for correct orientation of preview images
$recommendedPHPModules[] = 'exif';
}
if (!defined('PASSWORD_ARGON2I')) {
// Installing php-sodium on >=php7.4 will provide PASSWORD_ARGON2I
// on previous version argon2 wasn't part of the "standard" extension

Loading…
Cancel
Save