56fb7401b9
The build fails if libintl.h is found but xgettext is not available: Has header "libintl.h" : YES Library intl found: NO po/meson.build:28:5: ERROR: Can not do gettext because xgettext is not installed. This is because enable_nls defaults to true if libintl.h is found. Use the nls option to enable/disable NLS explicitly, depending on BR2_SYSTEM_ENABLE_NLS, Also, fix the second patch to always look for libintl, even if NLS is not enabled. The enable_nls option disables processing the po files, but the gettext calls in the source are still there, so we need to link with libintl anyway. Fixes: - http://autobuild.buildroot.org/results/0ab0a42fd4c5c9fd5891f3b84287bd788f763ba4 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
40 lines
962 B
Makefile
40 lines
962 B
Makefile
################################################################################
|
|
#
|
|
# ncmpc
|
|
#
|
|
################################################################################
|
|
|
|
NCMPC_VERSION_MAJOR = 0
|
|
NCMPC_VERSION = $(NCMPC_VERSION_MAJOR).34
|
|
NCMPC_SOURCE = ncmpc-$(NCMPC_VERSION).tar.xz
|
|
NCMPC_SITE = http://www.musicpd.org/download/ncmpc/$(NCMPC_VERSION_MAJOR)
|
|
NCMPC_DEPENDENCIES = \
|
|
boost \
|
|
host-pkgconf \
|
|
libmpdclient \
|
|
ncurses \
|
|
$(TARGET_NLS_DEPENDENCIES)
|
|
NCMPC_LICENSE = GPL-2.0+
|
|
NCMPC_LICENSE_FILES = COPYING
|
|
|
|
NCMPC_CONF_OPTS = \
|
|
-Dcurses=ncurses \
|
|
-Ddocumentation=disabled \
|
|
$(if $(BR2_SYSTEM_ENABLE_NLS),-Dnls=enabled,-Dnls=disabled)
|
|
|
|
ifeq ($(BR2_PACKAGE_LIRC_TOOLS),y)
|
|
NCMPC_DEPENDENCIES += lirc-tools
|
|
NCMPC_CONF_OPTS += -Dlirc=enabled
|
|
else
|
|
NCMPC_CONF_OPTS += -Dlirc=disabled
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
NCMPC_DEPENDENCIES += pcre
|
|
NCMPC_CONF_OPTS += -Dregex=enabled
|
|
else
|
|
NCMPC_CONF_OPTS += -Dregex=disabled
|
|
endif
|
|
|
|
$(eval $(meson-package))
|