diff options
-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 2991cd5a76..1b519de4e1 100644 --- a/package/gd/gd.mk +++ b/package/gd/gd.mk @@ -51,6 +51,13 @@ else GD_CONF_OPTS += --without-png endif +ifeq ($(BR2_PACKAGE_LIBVPX),y) +GD_DEPENDENCIES += libvpx +GD_CONF_OPTS += --with-vpx +else +GD_CONF_OPTS += --without-vpx +endif + ifeq ($(BR2_PACKAGE_TIFF),y) GD_DEPENDENCIES += tiff GD_CONF_OPTS += --with-tiff |