ushare: needs libintl if NLS is enabled
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
b3b66fb8de
commit
7df3db6c90
@ -2,6 +2,8 @@ config BR2_PACKAGE_USHARE
|
||||
bool "ushare"
|
||||
depends on BR2_LARGEFILE
|
||||
select BR2_PACKAGE_LIBUPNP
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
help
|
||||
uShare is a UPnP (TM) A/V & DLNA Media Server.
|
||||
It implements the server component that provides UPnP media devices
|
||||
|
@ -9,6 +9,11 @@ USHARE_SOURCE = ushare-$(USHARE_VERSION).tar.bz2
|
||||
USHARE_SITE = http://ushare.geexbox.org/releases
|
||||
USHARE_DEPENDENCIES = host-pkg-config libupnp
|
||||
|
||||
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
||||
USHARE_DEPENDENCIES += gettext libintl
|
||||
USHARE_LDFLAGS += -lintl
|
||||
endif
|
||||
|
||||
define USHARE_CONFIGURE_CMDS
|
||||
(cd $(@D); \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
@ -19,7 +24,7 @@ define USHARE_CONFIGURE_CMDS
|
||||
endef
|
||||
|
||||
define USHARE_BUILD_CMDS
|
||||
$(MAKE) -C $(@D)
|
||||
$(MAKE) LDFLAGS="$(TARGET_LDFLAGS) $(USHARE_LDFLAGS)" -C $(@D)
|
||||
endef
|
||||
|
||||
define USHARE_INSTALL_TARGET_CMDS
|
||||
|
Loading…
Reference in New Issue
Block a user