From: Peter Korsgaard Date: Tue, 10 Mar 2009 22:47:21 +0000 (-0000) Subject: avahi: fix build with libintl but without locale support in toolchain X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc9512c09d59d731a2ad0b96ce778ca8f90964c1;p=buildroot.git avahi: fix build with libintl but without locale support in toolchain --- diff --git a/package/avahi/avahi.mk b/package/avahi/avahi.mk index e4b34a072e..77f4f36019 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