mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
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"
|
bool "ushare"
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
select BR2_PACKAGE_LIBUPNP
|
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
|
help
|
||||||
uShare is a UPnP (TM) A/V & DLNA Media Server.
|
uShare is a UPnP (TM) A/V & DLNA Media Server.
|
||||||
It implements the server component that provides UPnP media devices
|
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_SITE = http://ushare.geexbox.org/releases
|
||||||
USHARE_DEPENDENCIES = host-pkg-config libupnp
|
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
|
define USHARE_CONFIGURE_CMDS
|
||||||
(cd $(@D); \
|
(cd $(@D); \
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
@ -19,7 +24,7 @@ define USHARE_CONFIGURE_CMDS
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define USHARE_BUILD_CMDS
|
define USHARE_BUILD_CMDS
|
||||||
$(MAKE) -C $(@D)
|
$(MAKE) LDFLAGS="$(TARGET_LDFLAGS) $(USHARE_LDFLAGS)" -C $(@D)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define USHARE_INSTALL_TARGET_CMDS
|
define USHARE_INSTALL_TARGET_CMDS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user