diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-05-17 16:02:24 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-17 23:25:34 +0200 |
commit | 8e6fa1b4b02e85b47e16a7e2ea7cd05db6394ce8 (patch) | |
tree | 419b3065805ef44c8772cd8b7f0eaf8f7f60057e /package/php-imagick | |
parent | 07882dc3eacbc1cd3613676dc4c5ca8787dbfa17 (diff) | |
download | buildroot-8e6fa1b4b02e85b47e16a7e2ea7cd05db6394ce8.tar.gz buildroot-8e6fa1b4b02e85b47e16a7e2ea7cd05db6394ce8.zip |
php-imagick: propagate BR2_USE_MMU dependency
php-imagick selects imagemagick, and imagemagick 'depends on
BR2_USE_MMU', but this dependency was not propagated to
php-imagick. This commit fixes that.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/php-imagick')
-rw-r--r-- | package/php-imagick/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/php-imagick/Config.in b/package/php-imagick/Config.in index 1d55fccdda..a5e32a51fb 100644 --- a/package/php-imagick/Config.in +++ b/package/php-imagick/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PHP_IMAGICK bool "php-imagick" depends on BR2_PACKAGE_PHP + depends on BR2_USE_MMU # imagemagick select BR2_PACKAGE_IMAGEMAGICK help PHP wrapper to the ImageMagick library. |