package/ltris: fix static linking with libmad

Fixes
http://autobuild.buildroot.net/results/b06/b0671af6be81550221f5abf98c2c797787590199/

[Peter: add host-pkgconf to _DEPENDENCIES]
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls 2016-05-19 07:52:13 +02:00 committed by Peter Korsgaard
parent ae2355a07f
commit 14572af693

View File

@ -12,18 +12,22 @@ LTRIS_LICENSE_FILES = COPYING
LTRIS_DEPENDENCIES = sdl LTRIS_DEPENDENCIES = sdl
LTRIS_CONF_ENV = \ LTRIS_CONF_ENV = \
SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" SDL_CONFIG="$(STAGING_DIR)/usr/bin/sdl-config" \
LIBS="$(LTRIS_LIBS)"
ifeq ($(BR2_PACKAGE_LTRIS_AUDIO),y) ifeq ($(BR2_PACKAGE_LTRIS_AUDIO),y)
LTRIS_DEPENDENCIES += sdl_mixer LTRIS_DEPENDENCIES += sdl_mixer host-pkgconf
LTRIS_CONF_OPTS += --enable-audio=yes LTRIS_CONF_OPTS += --enable-audio=yes
# configure script does NOT use pkg-config to figure out how to link
# with sdl_mixer, breaking static linking as sdl_mixer can use libmad
LTRIS_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs SDL_mixer`
else else
LTRIS_CONF_OPTS += --disable-audio LTRIS_CONF_OPTS += --disable-audio
endif endif
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y) ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
LTRIS_DEPENDENCIES += gettext LTRIS_DEPENDENCIES += gettext
LTRIS_CONF_ENV += LIBS=-lintl LTRIS_LIBS += -lintl
endif endif
$(eval $(autotools-package)) $(eval $(autotools-package))