summaryrefslogtreecommitdiffstats
path: root/package/avahi
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2009-03-10 22:47:21 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2009-03-10 22:47:21 +0000
commitbc9512c09d59d731a2ad0b96ce778ca8f90964c1 (patch)
tree0fe0fbec2742f19cea52fe5d15a5ae24dc203cd0 /package/avahi
parentbb6d88ec0f032479105ffa0c10231ef35cf36a99 (diff)
downloadbuildroot-novena-bc9512c09d59d731a2ad0b96ce778ca8f90964c1.tar.gz
buildroot-novena-bc9512c09d59d731a2ad0b96ce778ca8f90964c1.zip
avahi: fix build with libintl but without locale support in toolchain
Diffstat (limited to 'package/avahi')
-rw-r--r--package/avahi/avahi.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/avahi/avahi.mk b/package/avahi/avahi.mk
index e4b34a072..77f4f3601 100644
--- a/package/avahi/avahi.mk
+++ b/package/avahi/avahi.mk
@@ -92,7 +92,7 @@ AVAHI_CONF_OPT = --localstatedir=/var \
--with-autoipd-user=default \
--with-autoipd-group=default
-AVAHI_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),gettext libintl)
+AVAHI_DEPENDENCIES = $(if $(BR2_PACKAGE_GETTEXT),gettext)
ifneq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_AVAHI_AUTOIPD),)
AVAHI_DEPENDENCIES += libdaemon
@@ -113,7 +113,8 @@ else
AVAHI_CONF_OPT += --disable-dbus
endif
-ifeq ($(BR2_ENABLE_LOCALE),y)
+ifeq ($(BR2_PACKAGE_LIBINTL),y)
+AVAHI_DEPENDENCIES += libintl
AVAHI_MAKE_OPT = LIBS=-lintl
endif