Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected
@ 2012-11-01 14:35 Arnout Vandecappelle
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 2/9] flex: " Arnout Vandecappelle
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:35 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Also add missing select in Config.in.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/diffutils/Config.in    |    1 +
 package/diffutils/diffutils.mk |    3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/diffutils/Config.in b/package/diffutils/Config.in
index 86da5d3..4cc16e2 100644
--- a/package/diffutils/Config.in
+++ b/package/diffutils/Config.in
@@ -1,6 +1,7 @@
 config BR2_PACKAGE_DIFFUTILS
 	bool"diffutils"
 	depends on BR2_USE_WCHAR
+	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	help
 	  GNU diff. Compare files per line.
 
diff --git a/package/diffutils/diffutils.mk b/package/diffutils/diffutils.mk
index 168d040..2530763 100644
--- a/package/diffutils/diffutils.mk
+++ b/package/diffutils/diffutils.mk
@@ -6,8 +6,7 @@
 
 DIFFUTILS_VERSION = 3.2
 DIFFUTILS_SITE = $(BR2_GNU_MIRROR)/diffutils
-DIFFUTILS_DEPENDENCIES = \
-	$(if $(BR2_PACKAGE_GETTEXT),gettext)
+DIFFUTILS_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
 
 ifeq ($(BR2_PACKAGE_BUSYBOX),y)
 DIFFUTILS_DEPENDENCIES += busybox

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 2/9] flex: only needs gettext if locale is selected
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
@ 2012-11-01 14:35 ` Arnout Vandecappelle
  2013-03-24 13:23   ` Gustavo Zacarias
  2013-05-06 22:25   ` Peter Korsgaard
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 3/9] ndisc6: " Arnout Vandecappelle
                   ` (7 subsequent siblings)
  8 siblings, 2 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:35 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Also add missing select in Config.in.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/flex/Config.in |    1 +
 package/flex/flex.mk   |    3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/flex/Config.in b/package/flex/Config.in
index b10eb00..8ce4ccd 100644
--- a/package/flex/Config.in
+++ b/package/flex/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_FLEX
 	bool "flex"
+	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	help
 	  A fast lexical analyser generator.  A tool for generating
 	  programs that perform pattern-matching on text.
diff --git a/package/flex/flex.mk b/package/flex/flex.mk
index 2599cdc..fe21432 100644
--- a/package/flex/flex.mk
+++ b/package/flex/flex.mk
@@ -11,8 +11,7 @@ FLEX_PATCH = flex_$(FLEX_VERSION)-$(FLEX_PATCH_VERSION).diff.gz
 FLEX_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/f/flex
 FLEX_DIR = $(BUILD_DIR)/flex-$(FLEX_VERSION)
 FLEX_INSTALL_STAGING = YES
-FLEX_DEPENDENCIES = \
-	$(if $(BR2_PACKAGE_GETTEXT),gettext)
+FLEX_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
 # we don't have a host-gettext/libintl
 HOST_FLEX_DEPENDENCIES =
 

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 3/9] ndisc6: only needs gettext if locale is selected
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 2/9] flex: " Arnout Vandecappelle
@ 2012-11-01 14:35 ` Arnout Vandecappelle
  2013-03-24 13:24   ` Gustavo Zacarias
  2013-05-06 22:27   ` Peter Korsgaard
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 4/9] util-linux: " Arnout Vandecappelle
                   ` (6 subsequent siblings)
  8 siblings, 2 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:35 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Also add missing select in Config.in.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/ndisc6/Config.in |    1 +
 package/ndisc6/ndisc6.mk |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/ndisc6/Config.in b/package/ndisc6/Config.in
index 126bfa2..6abe4ce 100644
--- a/package/ndisc6/Config.in
+++ b/package/ndisc6/Config.in
@@ -4,6 +4,7 @@ comment "ndisc6 requires a toolchain with IPv6 support"
 config BR2_PACKAGE_NDISC6
 	bool "ndisc6 tools"
 	depends on BR2_INET_IPV6
+	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	help
 	  NDisc6 is a small collection of useful tools for IPv6 networking
 
diff --git a/package/ndisc6/ndisc6.mk b/package/ndisc6/ndisc6.mk
index f58cc13..1d3c0e7 100644
--- a/package/ndisc6/ndisc6.mk
+++ b/package/ndisc6/ndisc6.mk
@@ -10,7 +10,7 @@ NDISC6_SITE = http://www.remlab.net/files/ndisc6/
 NDISC6_CONF_ENV = CC="$(TARGET_CC) -std=gnu99"
 NDISC6_CONF_OPT = --localstatedir=/var --disable-rpath --disable-suid-install
 
-ifeq ($(BR2_PACKAGE_GETTEXT),y)
+ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
 NDISC6_DEPENDENCIES += gettext
 NDISC6_CONF_ENV += LDFLAGS="$(TARGET_LDFLAGS) -lintl"
 endif

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 4/9] util-linux: only needs gettext if locale is selected
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 2/9] flex: " Arnout Vandecappelle
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 3/9] ndisc6: " Arnout Vandecappelle
@ 2012-11-01 14:35 ` Arnout Vandecappelle
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 5/9] lshw: fix build with no LOCALE support Arnout Vandecappelle
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:35 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Also add missing select in Config.in.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/util-linux/Config.in     |    1 +
 package/util-linux/util-linux.mk |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in
index 43a8444..88d08e7 100644
--- a/package/util-linux/Config.in
+++ b/package/util-linux/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_UTIL_LINUX
 	bool "util-linux"
 	depends on BR2_LARGEFILE
 	depends on BR2_USE_WCHAR
+	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	help
 	  Various useful/essential Linux utilities.
 
diff --git a/package/util-linux/util-linux.mk b/package/util-linux/util-linux.mk
index f6028f4..f15baa7 100644
--- a/package/util-linux/util-linux.mk
+++ b/package/util-linux/util-linux.mk
@@ -29,7 +29,7 @@ else
 UTIL_LINUX_CONF_OPT += --without-ncurses
 endif
 
-ifeq ($(BR2_PACKAGE_GETTEXT),y)
+ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
 UTIL_LINUX_DEPENDENCIES += gettext
 UTIL_LINUX_MAKE_OPT += LIBS=-lintl
 endif

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 5/9] lshw: fix build with no LOCALE support
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
                   ` (2 preceding siblings ...)
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 4/9] util-linux: " Arnout Vandecappelle
@ 2012-11-01 14:36 ` Arnout Vandecappelle
  2013-07-31 16:16   ` Thomas Petazzoni
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 6/9] avahi: remove double dependency on gettext Arnout Vandecappelle
                   ` (4 subsequent siblings)
  8 siblings, 1 reply; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:36 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

lshw doesn't need libintl if -DNONLS is defined.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/lshw/Config.in |    2 +-
 package/lshw/lshw.mk   |   12 +++++++++---
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/package/lshw/Config.in b/package/lshw/Config.in
index 98beacd..afefa6c 100644
--- a/package/lshw/Config.in
+++ b/package/lshw/Config.in
@@ -3,7 +3,7 @@ config BR2_PACKAGE_LSHW
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_LARGEFILE
 	depends on BR2_USE_WCHAR
-	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
+	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	help
 	  lshw (Hardware Lister) is a small tool to provide
 	  detailed information on the hardware configuration of the machine.
diff --git a/package/lshw/lshw.mk b/package/lshw/lshw.mk
index 68daa0d..b3c2214 100644
--- a/package/lshw/lshw.mk
+++ b/package/lshw/lshw.mk
@@ -6,10 +6,16 @@
 
 LSHW_VERSION = B.02.16
 LSHW_SITE = http://ezix.org/software/files
+
+LSHW_CFLAGS = $(TARGET_CFLAGS)
+ifeq ($(BR2_ENABLE_LOCALE),)
+LSHW_CFLAGS += -DNONLS
+endif
+
 LSHW_MAKE_OPT = CC="$(TARGET_CC)" CXX="$(TARGET_CXX)" AR="$(TARGET_AR)" \
-	RPM_OPT_FLAGS="$(TARGET_CFLAGS)" all
-LSHW_MAKE_ENV = LIBS="$(if $(BR2_NEEDS_GETTEXT),-lintl)"
-LSHW_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT),gettext)
+	RPM_OPT_FLAGS="$(LSHW_CFLAGS)" all
+LSHW_MAKE_ENV = LIBS="$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),-lintl)"
+LSHW_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext)
 
 define LSHW_BUILD_CMDS
 	$(LSHW_MAKE_ENV) $(MAKE) -C $(@D)/src $(LSHW_MAKE_OPT)

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 6/9] avahi: remove double dependency on gettext
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
                   ` (3 preceding siblings ...)
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 5/9] lshw: fix build with no LOCALE support Arnout Vandecappelle
@ 2012-11-01 14:36 ` Arnout Vandecappelle
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 7/9] pulseaudio: remove " Arnout Vandecappelle
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:36 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/avahi/avahi.mk |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/package/avahi/avahi.mk b/package/avahi/avahi.mk
index 5f07a2f..d96f24b 100644
--- a/package/avahi/avahi.mk
+++ b/package/avahi/avahi.mk
@@ -133,10 +133,7 @@ else
 AVAHI_CONF_OPT += --disable-python
 endif
 
-ifeq ($(BR2_PACKAGE_GETTEXT),y)
-AVAHI_DEPENDENCIES += gettext
-AVAHI_MAKE_OPT = LIBS=-lintl
-endif
+AVAHI_MAKE_OPT += $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),LIBS=-lintl)
 
 define AVAHI_REMOVE_INITSCRIPT
 	rm -rf $(TARGET_DIR)/etc/init.d/avahi-*

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 7/9] pulseaudio: remove dependency on gettext
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
                   ` (4 preceding siblings ...)
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 6/9] avahi: remove double dependency on gettext Arnout Vandecappelle
@ 2012-11-01 14:36 ` Arnout Vandecappelle
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 8/9] gdk-pixbuf: " Arnout Vandecappelle
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:36 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

The dependency on gettext is only due to libglib2, not due to
pulseaudio itself.  It works fine without gettext if libglib2 is
not selected.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
v2: actually remove the gettext dependency this time; thanks Thomas
---
 package/multimedia/pulseaudio/Config.in     |    1 -
 package/multimedia/pulseaudio/pulseaudio.mk |    1 -
 2 files changed, 2 deletions(-)

diff --git a/package/multimedia/pulseaudio/Config.in b/package/multimedia/pulseaudio/Config.in
index 6c767bb..0844192 100644
--- a/package/multimedia/pulseaudio/Config.in
+++ b/package/multimedia/pulseaudio/Config.in
@@ -5,7 +5,6 @@ config BR2_PACKAGE_PULSEAUDIO
 	select BR2_PACKAGE_JSON_C
 	select BR2_PACKAGE_LIBSNDFILE
 	select BR2_PACKAGE_SPEEX
-	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
 	help
 	  PulseAudio is a sound system for POSIX OSes, meaning that it
 	  is a proxy for your sound applications. It allows you to do
diff --git a/package/multimedia/pulseaudio/pulseaudio.mk b/package/multimedia/pulseaudio/pulseaudio.mk
index e78eb42..a842180 100644
--- a/package/multimedia/pulseaudio/pulseaudio.mk
+++ b/package/multimedia/pulseaudio/pulseaudio.mk
@@ -16,7 +16,6 @@ PULSEAUDIO_CONF_OPT = \
 
 PULSEAUDIO_DEPENDENCIES = \
 	host-pkgconf libtool json-c libsndfile speex host-intltool \
-	$(if $(BR2_NEEDS_GETTEXT),gettext) \
 	$(if $(BR2_PACKAGE_LIBATOMIC_OPS),libatomic_ops) \
 	$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate) \
 	$(if $(BR2_PACKAGE_ALSA_LIB),alsa-lib) \

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 8/9] gdk-pixbuf: remove dependency on gettext
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
                   ` (5 preceding siblings ...)
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 7/9] pulseaudio: remove " Arnout Vandecappelle
@ 2012-11-01 14:36 ` Arnout Vandecappelle
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 9/9] libsoup: Remove redundant " Arnout Vandecappelle
  2013-03-24 13:23 ` [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Gustavo Zacarias
  8 siblings, 0 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:36 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

The dependency on gettext comes from libglib2, not from gdk-pixbuf
itself.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/gdk-pixbuf/Config.in     |    1 -
 package/gdk-pixbuf/gdk-pixbuf.mk |    1 -
 2 files changed, 2 deletions(-)

diff --git a/package/gdk-pixbuf/Config.in b/package/gdk-pixbuf/Config.in
index 33b5f7c..f205793 100644
--- a/package/gdk-pixbuf/Config.in
+++ b/package/gdk-pixbuf/Config.in
@@ -2,7 +2,6 @@ config BR2_PACKAGE_GDK_PIXBUF
 	bool "gdk-pixbuf"
 	depends on BR2_USE_WCHAR # glib2
 	select BR2_PACKAGE_LIBGLIB2
-	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
 	select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
 	help
 	  Gdk-Pixbuf is an image loader and scaler. It uses GObject
diff --git a/package/gdk-pixbuf/gdk-pixbuf.mk b/package/gdk-pixbuf/gdk-pixbuf.mk
index 4e00c40..8c785cd 100644
--- a/package/gdk-pixbuf/gdk-pixbuf.mk
+++ b/package/gdk-pixbuf/gdk-pixbuf.mk
@@ -40,7 +40,6 @@ GDK_PIXBUF_DEPENDENCIES += xlib_libX11
 endif
 
 GDK_PIXBUF_DEPENDENCIES += \
-	$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \
 	$(if $(BR2_ENABLE_LOCALE),,libiconv) \
 	host-pkgconf libglib2
 

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 9/9] libsoup: Remove redundant dependency on gettext
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
                   ` (6 preceding siblings ...)
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 8/9] gdk-pixbuf: " Arnout Vandecappelle
@ 2012-11-01 14:36 ` Arnout Vandecappelle
  2013-03-24 13:23 ` [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Gustavo Zacarias
  8 siblings, 0 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2012-11-01 14:36 UTC (permalink / raw)
  To: buildroot

From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

libsoup doesn't use intl stuff directly, but uses gi18n.  libglib2
already has all required dependencies on gettext.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/libsoup/Config.in  |    1 -
 package/libsoup/libsoup.mk |    2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/package/libsoup/Config.in b/package/libsoup/Config.in
index 57b425f..b79108e 100644
--- a/package/libsoup/Config.in
+++ b/package/libsoup/Config.in
@@ -3,7 +3,6 @@ config BR2_PACKAGE_LIBSOUP
 	depends on BR2_USE_WCHAR # glib2 and gnutls
 	select BR2_PACKAGE_LIBXML2
 	select BR2_PACKAGE_LIBGLIB2
-	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
 	help
 	  libsoup is an HTTP client/server library. It uses GObject
 	  and the GLib main loop, to integrate well with GNOME
diff --git a/package/libsoup/libsoup.mk b/package/libsoup/libsoup.mk
index 2f173df..2a2d8bf 100644
--- a/package/libsoup/libsoup.mk
+++ b/package/libsoup/libsoup.mk
@@ -19,7 +19,7 @@ endif
 
 LIBSOUP_CONF_OPT = --disable-glibtest --without-gnome
 
-LIBSOUP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) host-pkgconf host-libglib2 libglib2 libxml2
+LIBSOUP_DEPENDENCIES = host-pkgconf host-libglib2 libglib2 libxml2
 
 ifeq ($(BR2_PACKAGE_LIBSOUP_SSL),y)
 LIBSOUP_DEPENDENCIES += glib-networking

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected
  2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
                   ` (7 preceding siblings ...)
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 9/9] libsoup: Remove redundant " Arnout Vandecappelle
@ 2013-03-24 13:23 ` Gustavo Zacarias
  8 siblings, 0 replies; 16+ messages in thread
From: Gustavo Zacarias @ 2013-03-24 13:23 UTC (permalink / raw)
  To: buildroot

On 11/01/2012 11:35 AM, Arnout Vandecappelle (Essensium/Mind) wrote:

> From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> 
> Also add missing select in Config.in.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 2/9] flex: only needs gettext if locale is selected
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 2/9] flex: " Arnout Vandecappelle
@ 2013-03-24 13:23   ` Gustavo Zacarias
  2013-05-06 22:25   ` Peter Korsgaard
  1 sibling, 0 replies; 16+ messages in thread
From: Gustavo Zacarias @ 2013-03-24 13:23 UTC (permalink / raw)
  To: buildroot

On 11/01/2012 11:35 AM, Arnout Vandecappelle (Essensium/Mind) wrote:

> From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> 
> Also add missing select in Config.in.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 3/9] ndisc6: only needs gettext if locale is selected
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 3/9] ndisc6: " Arnout Vandecappelle
@ 2013-03-24 13:24   ` Gustavo Zacarias
  2013-05-06 22:27   ` Peter Korsgaard
  1 sibling, 0 replies; 16+ messages in thread
From: Gustavo Zacarias @ 2013-03-24 13:24 UTC (permalink / raw)
  To: buildroot

On 11/01/2012 11:35 AM, Arnout Vandecappelle (Essensium/Mind) wrote:

> From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> 
> Also add missing select in Config.in.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 2/9] flex: only needs gettext if locale is selected
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 2/9] flex: " Arnout Vandecappelle
  2013-03-24 13:23   ` Gustavo Zacarias
@ 2013-05-06 22:25   ` Peter Korsgaard
  1 sibling, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2013-05-06 22:25 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 Arnout> From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 Arnout> Also add missing select in Config.in.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 3/9] ndisc6: only needs gettext if locale is selected
  2012-11-01 14:35 ` [Buildroot] [PATCH 3 3/9] ndisc6: " Arnout Vandecappelle
  2013-03-24 13:24   ` Gustavo Zacarias
@ 2013-05-06 22:27   ` Peter Korsgaard
  1 sibling, 0 replies; 16+ messages in thread
From: Peter Korsgaard @ 2013-05-06 22:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:

 Arnout> From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 Arnout> Also add missing select in Config.in.

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 5/9] lshw: fix build with no LOCALE support
  2012-11-01 14:36 ` [Buildroot] [PATCH 3 5/9] lshw: fix build with no LOCALE support Arnout Vandecappelle
@ 2013-07-31 16:16   ` Thomas Petazzoni
  2013-08-11 14:25     ` Arnout Vandecappelle
  0 siblings, 1 reply; 16+ messages in thread
From: Thomas Petazzoni @ 2013-07-31 16:16 UTC (permalink / raw)
  To: buildroot

Dear Arnout Vandecappelle \(Essensium/Mind\),

On Thu, 01 Nov 2012 15:36:00 +0100, Arnout Vandecappelle
\(Essensium/Mind\) wrote:
> From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> 
> lshw doesn't need libintl if -DNONLS is defined.
> 
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
>  package/lshw/Config.in |    2 +-
>  package/lshw/lshw.mk   |   12 +++++++++---
>  2 files changed, 10 insertions(+), 4 deletions(-)

I've applied the following patches of this series:

09704e7ee8a6e49d68359df7b4ebffb4d7819965 libsoup: Remove redundant dependency on gettext
de1932aaff2d0662b268a4ad71905f987155f0bf gdk-pixbuf: remove dependency on gettext
3cb28e173ca15a7ae9e7b741464f6e3e6936165f pulseaudio: remove dependency on gettext
0c2de8da28b859d0ace26743095fb73ae1a94940 avahi: remove double dependency on gettext
cdc2420b4c332a0d69b8198c756bb054386c912a lshw: fix build with no LOCALE support
da8860e4da533bbe3d684354b37174adb0e23b98 util-linux: only needs gettext if locale is selected

I think those ones were the remaining non-applied patches for this series.

Thanks!

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [Buildroot] [PATCH 3 5/9] lshw: fix build with no LOCALE support
  2013-07-31 16:16   ` Thomas Petazzoni
@ 2013-08-11 14:25     ` Arnout Vandecappelle
  0 siblings, 0 replies; 16+ messages in thread
From: Arnout Vandecappelle @ 2013-08-11 14:25 UTC (permalink / raw)
  To: buildroot

On 31/07/13 18:16, Thomas Petazzoni wrote:
> Dear Arnout Vandecappelle \(Essensium/Mind\),
>
> On Thu, 01 Nov 2012 15:36:00 +0100, Arnout Vandecappelle
> \(Essensium/Mind\) wrote:
>> From: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>>
>> lshw doesn't need libintl if -DNONLS is defined.
>>
>> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>> ---
>>   package/lshw/Config.in |    2 +-
>>   package/lshw/lshw.mk   |   12 +++++++++---
>>   2 files changed, 10 insertions(+), 4 deletions(-)
>
> I've applied the following patches of this series:
>
> 09704e7ee8a6e49d68359df7b4ebffb4d7819965 libsoup: Remove redundant dependency on gettext
> de1932aaff2d0662b268a4ad71905f987155f0bf gdk-pixbuf: remove dependency on gettext
> 3cb28e173ca15a7ae9e7b741464f6e3e6936165f pulseaudio: remove dependency on gettext
> 0c2de8da28b859d0ace26743095fb73ae1a94940 avahi: remove double dependency on gettext
> cdc2420b4c332a0d69b8198c756bb054386c912a lshw: fix build with no LOCALE support
> da8860e4da533bbe3d684354b37174adb0e23b98 util-linux: only needs gettext if locale is selected
>
> I think those ones were the remaining non-applied patches for this series.

  Yep, looks complete to me.

  Regards,
  Arnout


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2013-08-11 14:25 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-01 14:35 [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Arnout Vandecappelle
2012-11-01 14:35 ` [Buildroot] [PATCH 3 2/9] flex: " Arnout Vandecappelle
2013-03-24 13:23   ` Gustavo Zacarias
2013-05-06 22:25   ` Peter Korsgaard
2012-11-01 14:35 ` [Buildroot] [PATCH 3 3/9] ndisc6: " Arnout Vandecappelle
2013-03-24 13:24   ` Gustavo Zacarias
2013-05-06 22:27   ` Peter Korsgaard
2012-11-01 14:35 ` [Buildroot] [PATCH 3 4/9] util-linux: " Arnout Vandecappelle
2012-11-01 14:36 ` [Buildroot] [PATCH 3 5/9] lshw: fix build with no LOCALE support Arnout Vandecappelle
2013-07-31 16:16   ` Thomas Petazzoni
2013-08-11 14:25     ` Arnout Vandecappelle
2012-11-01 14:36 ` [Buildroot] [PATCH 3 6/9] avahi: remove double dependency on gettext Arnout Vandecappelle
2012-11-01 14:36 ` [Buildroot] [PATCH 3 7/9] pulseaudio: remove " Arnout Vandecappelle
2012-11-01 14:36 ` [Buildroot] [PATCH 3 8/9] gdk-pixbuf: " Arnout Vandecappelle
2012-11-01 14:36 ` [Buildroot] [PATCH 3 9/9] libsoup: Remove redundant " Arnout Vandecappelle
2013-03-24 13:23 ` [Buildroot] [PATCH 3 1/9] diffutils: only needs gettext if locale is selected Gustavo Zacarias

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox