gd: use pkg-config to figure out png linker flags

So gdlib-config --libs returns the full dependency chain (-lpng16 -lz -m)
when linking statically.

Fixes http://autobuild.buildroot.net/results/dac/dac3eb950c7c27b2f09f001f9db9936f897721f9/

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Peter Korsgaard 2014-11-25 15:54:46 +01:00
parent 46c644310c
commit ccec35e342
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ endif
ifeq ($(BR2_PACKAGE_LIBPNG),y)
GD_DEPENDENCIES += libpng
GD_CONF_OPTS += --with-png=$(STAGING_DIR)/usr
GD_CONF_OPTS += --with-png
else
GD_CONF_OPTS += --without-png
endif