Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/x11r7/xapp_xload: disable gettext detection when not needed
@ 2020-12-04 20:50 Bernd Kuhls
  2021-01-02 21:46 ` Yann E. MORIN
  2021-01-05 22:05 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Bernd Kuhls @ 2020-12-04 20:50 UTC (permalink / raw)
  To: buildroot

Patch originates from FreeBSD:
https://lists.freebsd.org/pipermail/freebsd-x11/2015-July/016528.html
https://svnweb.freebsd.org/ports/head/x11/libXpm/Makefile?r1=384234&r2=391122&pathrev=391122

Fixes:
http://autobuild.buildroot.net/results/2ad/2ad27875ce5c16a111d54d452eb395257e9b5e2b/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
xlib_libXpm was fixed the same way:
http://patchwork.ozlabs.org/project/buildroot/patch/20180107175626.19944-1-bernd.kuhls at t-online.de/

 package/x11r7/xapp_xload/xapp_xload.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/x11r7/xapp_xload/xapp_xload.mk b/package/x11r7/xapp_xload/xapp_xload.mk
index 4bb21ecf0b..9f491ccdc6 100644
--- a/package/x11r7/xapp_xload/xapp_xload.mk
+++ b/package/x11r7/xapp_xload/xapp_xload.mk
@@ -18,4 +18,8 @@ ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
 XAPP_XLOAD_CONF_OPTS += CFLAGS="$(TARGET_CFLAGS) -DRLOADSTUB"
 endif
 
+ifeq ($(BR2_SYSTEM_ENABLE_NLS),)
+XAPP_XLOAD_CONF_ENV += ac_cv_search_gettext=no
+endif
+
 $(eval $(autotools-package))
-- 
2.29.2

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

* [Buildroot] [PATCH 1/1] package/x11r7/xapp_xload: disable gettext detection when not needed
  2020-12-04 20:50 [Buildroot] [PATCH 1/1] package/x11r7/xapp_xload: disable gettext detection when not needed Bernd Kuhls
@ 2021-01-02 21:46 ` Yann E. MORIN
  2021-01-05 22:05 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2021-01-02 21:46 UTC (permalink / raw)
  To: buildroot

Bernd, All,

On 2020-12-04 21:50 +0100, Bernd Kuhls spake thusly:
> Patch originates from FreeBSD:
> https://lists.freebsd.org/pipermail/freebsd-x11/2015-July/016528.html
> https://svnweb.freebsd.org/ports/head/x11/libXpm/Makefile?r1=384234&r2=391122&pathrev=391122
> 
> Fixes:
> http://autobuild.buildroot.net/results/2ad/2ad27875ce5c16a111d54d452eb395257e9b5e2b/
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Applied to master, thanks.

> ---
> xlib_libXpm was fixed the same way:
> http://patchwork.ozlabs.org/project/buildroot/patch/20180107175626.19944-1-bernd.kuhls at t-online.de/

I have added a reference to that commit in the commit log, thanks!

Regards,
Yann E. MORIN.

>  package/x11r7/xapp_xload/xapp_xload.mk | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/package/x11r7/xapp_xload/xapp_xload.mk b/package/x11r7/xapp_xload/xapp_xload.mk
> index 4bb21ecf0b..9f491ccdc6 100644
> --- a/package/x11r7/xapp_xload/xapp_xload.mk
> +++ b/package/x11r7/xapp_xload/xapp_xload.mk
> @@ -18,4 +18,8 @@ ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
>  XAPP_XLOAD_CONF_OPTS += CFLAGS="$(TARGET_CFLAGS) -DRLOADSTUB"
>  endif
>  
> +ifeq ($(BR2_SYSTEM_ENABLE_NLS),)
> +XAPP_XLOAD_CONF_ENV += ac_cv_search_gettext=no
> +endif
> +
>  $(eval $(autotools-package))
> -- 
> 2.29.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 1/1] package/x11r7/xapp_xload: disable gettext detection when not needed
  2020-12-04 20:50 [Buildroot] [PATCH 1/1] package/x11r7/xapp_xload: disable gettext detection when not needed Bernd Kuhls
  2021-01-02 21:46 ` Yann E. MORIN
@ 2021-01-05 22:05 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-01-05 22:05 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Patch originates from FreeBSD:
 > https://lists.freebsd.org/pipermail/freebsd-x11/2015-July/016528.html
 > https://svnweb.freebsd.org/ports/head/x11/libXpm/Makefile?r1=384234&r2=391122&pathrev=391122

 > Fixes:
 > http://autobuild.buildroot.net/results/2ad/2ad27875ce5c16a111d54d452eb395257e9b5e2b/

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
 > ---
 > xlib_libXpm was fixed the same way:
 > http://patchwork.ozlabs.org/project/buildroot/patch/20180107175626.19944-1-bernd.kuhls at t-online.de/

Committed to 2020.02.x and 2020.11.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2021-01-05 22:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-04 20:50 [Buildroot] [PATCH 1/1] package/x11r7/xapp_xload: disable gettext detection when not needed Bernd Kuhls
2021-01-02 21:46 ` Yann E. MORIN
2021-01-05 22:05 ` Peter Korsgaard

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