diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2015-01-10 15:25:24 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-01-10 15:28:00 +0100 |
commit | 668efc5fbf1aa9e4b42df2ae92d24ee6fe0b252a (patch) | |
tree | 48cb3fd1c90943fa789c83401db28c6e15f8e9bd | |
parent | 9b2bbe3422d1e96eaf1e7f09743c325b48023ac2 (diff) | |
download | buildroot-668efc5fbf1aa9e4b42df2ae92d24ee6fe0b252a.tar.gz buildroot-668efc5fbf1aa9e4b42df2ae92d24ee6fe0b252a.zip |
package/gd: Add explicit support for tiff
This ensures reproducible builds.
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/gd/gd.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/gd/gd.mk b/package/gd/gd.mk index 868b45e8f3..d7a65128fe 100644 --- a/package/gd/gd.mk +++ b/package/gd/gd.mk @@ -52,6 +52,13 @@ else GD_CONF_OPTS += --without-png endif +ifeq ($(BR2_PACKAGE_TIFF),y) +GD_DEPENDENCIES += tiff +GD_CONF_OPTS += --with-tiff +else +GD_CONF_OPTS += --without-tiff +endif + ifeq ($(BR2_PACKAGE_XLIB_LIBXPM),y) GD_DEPENDENCIES += xlib_libXpm GD_CONF_OPTS += --with-xpm |