Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/ltris: drop unrecognized option
@ 2024-02-20 19:05 Fabrice Fontaine
  2024-02-20 20:49 ` Yann E. MORIN
  2024-03-16 22:00 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2024-02-20 19:05 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine, Julien Boibessot

--enable-sound has been dropped since version 1.2.4 and
https://sourceforge.net/p/lgames/code/432:

configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --enable-static, --disable-shared, --enable-sound

Fixes: 61848605cd26d29f54c16de862aedba7cf334be4

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/ltris/ltris.mk | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/package/ltris/ltris.mk b/package/ltris/ltris.mk
index 98902de44c..b34ac142ce 100644
--- a/package/ltris/ltris.mk
+++ b/package/ltris/ltris.mk
@@ -18,12 +18,9 @@ LTRIS_CONF_ENV = \
 
 ifeq ($(BR2_PACKAGE_LTRIS_AUDIO),y)
 LTRIS_DEPENDENCIES += sdl_mixer host-pkgconf
-LTRIS_CONF_OPTS += --enable-sound
 # configure script does NOT use pkg-config to figure out how to link
 # with sdl_mixer, breaking static linking as sdl_mixer can use libmad
 LTRIS_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs SDL_mixer`
-else
-LTRIS_CONF_OPTS += --disable-sound
 endif
 
 $(eval $(autotools-package))
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/ltris: drop unrecognized option
  2024-02-20 19:05 [Buildroot] [PATCH 1/1] package/ltris: drop unrecognized option Fabrice Fontaine
@ 2024-02-20 20:49 ` Yann E. MORIN
  2024-03-16 22:00 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2024-02-20 20:49 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Julien Boibessot, buildroot

Fabrice, All,

On 2024-02-20 20:05 +0100, Fabrice Fontaine spake thusly:
> --enable-sound has been dropped since version 1.2.4 and
> https://sourceforge.net/p/lgames/code/432:
> 
> configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --enable-static, --disable-shared, --enable-sound
> 
> Fixes: 61848605cd26d29f54c16de862aedba7cf334be4
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/ltris/ltris.mk | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/package/ltris/ltris.mk b/package/ltris/ltris.mk
> index 98902de44c..b34ac142ce 100644
> --- a/package/ltris/ltris.mk
> +++ b/package/ltris/ltris.mk
> @@ -18,12 +18,9 @@ LTRIS_CONF_ENV = \
>  
>  ifeq ($(BR2_PACKAGE_LTRIS_AUDIO),y)
>  LTRIS_DEPENDENCIES += sdl_mixer host-pkgconf
> -LTRIS_CONF_OPTS += --enable-sound
>  # configure script does NOT use pkg-config to figure out how to link
>  # with sdl_mixer, breaking static linking as sdl_mixer can use libmad
>  LTRIS_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs SDL_mixer`
> -else
> -LTRIS_CONF_OPTS += --disable-sound
>  endif
>  
>  $(eval $(autotools-package))
> -- 
> 2.43.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/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.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/ltris: drop unrecognized option
  2024-02-20 19:05 [Buildroot] [PATCH 1/1] package/ltris: drop unrecognized option Fabrice Fontaine
  2024-02-20 20:49 ` Yann E. MORIN
@ 2024-03-16 22:00 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2024-03-16 22:00 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Julien Boibessot, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > --enable-sound has been dropped since version 1.2.4 and
 > https://sourceforge.net/p/lgames/code/432:

 > configure: WARNING: unrecognized options: --disable-gtk-doc,
 > --disable-gtk-doc-html, --disable-doc, --disable-docs,
 > --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6,
 > --enable-static, --disable-shared, --enable-sound

 > Fixes: 61848605cd26d29f54c16de862aedba7cf334be4

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2023.11.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-03-16 22:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-20 19:05 [Buildroot] [PATCH 1/1] package/ltris: drop unrecognized option Fabrice Fontaine
2024-02-20 20:49 ` Yann E. MORIN
2024-03-16 22:00 ` Peter Korsgaard

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