fbd84d55ce
Disable inlining which raise build failures on arm. It should be noted that inlining is already disabled by usptream on arm64: https://github.com/libgeos/geos/issues/353 Fixes: - http://autobuild.buildroot.org/results/52024b2ccc5d17612731809a5dabcc29a4a1170b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
20 lines
533 B
Makefile
20 lines
533 B
Makefile
################################################################################
|
|
#
|
|
# libgeos
|
|
#
|
|
################################################################################
|
|
|
|
LIBGEOS_VERSION = 3.9.0
|
|
LIBGEOS_SITE = http://download.osgeo.org/geos
|
|
LIBGEOS_SOURCE = geos-$(LIBGEOS_VERSION).tar.bz2
|
|
LIBGEOS_LICENSE = LGPL-2.1
|
|
LIBGEOS_LICENSE_FILES = COPYING
|
|
LIBGEOS_INSTALL_STAGING = YES
|
|
LIBGEOS_CONFIG_SCRIPTS = geos-config
|
|
|
|
ifeq ($(BR2_arm)$(BR2_armeb),y)
|
|
LIBGEOS_CONF_OPTS += -DDISABLE_GEOS_INLINE=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|