Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE
@ 2023-10-15 20:12 Fabrice Fontaine
  2023-10-16  6:18 ` Maxim Kochetkov via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2023-10-15 20:12 UTC (permalink / raw)
  To: buildroot; +Cc: Maxim Kochetkov, Fabrice Fontaine

DISABLE_GEOS_INLINE has ben dropped since version 3.11.0 and
https://github.com/libgeos/geos/commit/1516e42eeae3b3114585f1e94a0e723d835f7757

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

diff --git a/package/libgeos/libgeos.mk b/package/libgeos/libgeos.mk
index e0931dbb30..70f8ca3495 100644
--- a/package/libgeos/libgeos.mk
+++ b/package/libgeos/libgeos.mk
@@ -19,10 +19,6 @@ ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_68485),y)
 LIBGEOS_CXXFLAGS += -O0
 endif
 
-ifeq ($(BR2_arm)$(BR2_armeb),y)
-LIBGEOS_CONF_OPTS += -DDISABLE_GEOS_INLINE=ON
-endif
-
 ifeq ($(BR2_or1k),y)
 LIBGEOS_CXXFLAGS += -mcmodel=large
 endif
-- 
2.42.0

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

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

* Re: [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE
  2023-10-15 20:12 [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE Fabrice Fontaine
@ 2023-10-16  6:18 ` Maxim Kochetkov via buildroot
  2023-11-01 22:10 ` Thomas Petazzoni via buildroot
  2023-11-08 12:27 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Maxim Kochetkov via buildroot @ 2023-10-16  6:18 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot



On 15.10.2023 23:12, Fabrice Fontaine wrote:
> DISABLE_GEOS_INLINE has ben dropped since version 3.11.0 and
> https://github.com/libgeos/geos/commit/1516e42eeae3b3114585f1e94a0e723d835f7757
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>


Reviewed-by: Maxim Kochetkov <fido_max@inbox.ru>

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

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

* Re: [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE
  2023-10-15 20:12 [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE Fabrice Fontaine
  2023-10-16  6:18 ` Maxim Kochetkov via buildroot
@ 2023-11-01 22:10 ` Thomas Petazzoni via buildroot
  2023-11-08 12:27 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-11-01 22:10 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Maxim Kochetkov, buildroot

On Sun, 15 Oct 2023 22:12:04 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> DISABLE_GEOS_INLINE has ben dropped since version 3.11.0 and
> https://github.com/libgeos/geos/commit/1516e42eeae3b3114585f1e94a0e723d835f7757
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/libgeos/libgeos.mk | 4 ----
>  1 file changed, 4 deletions(-)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE
  2023-10-15 20:12 [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE Fabrice Fontaine
  2023-10-16  6:18 ` Maxim Kochetkov via buildroot
  2023-11-01 22:10 ` Thomas Petazzoni via buildroot
@ 2023-11-08 12:27 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2023-11-08 12:27 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Maxim Kochetkov, buildroot

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

 > DISABLE_GEOS_INLINE has ben dropped since version 3.11.0 and
 > https://github.com/libgeos/geos/commit/1516e42eeae3b3114585f1e94a0e723d835f7757

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

Committed to 2023.08.x, thanks.

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

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

end of thread, other threads:[~2023-11-08 12:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-15 20:12 [Buildroot] [PATCH 1/1] package/libgeos: drop DISABLE_GEOS_INLINE Fabrice Fontaine
2023-10-16  6:18 ` Maxim Kochetkov via buildroot
2023-11-01 22:10 ` Thomas Petazzoni via buildroot
2023-11-08 12:27 ` Peter Korsgaard

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