mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
Pass the --disable-werror option to remove -Werror, and therefore avoid a number of build failures. Fixes: http://autobuild.buildroot.net/results/61ab7e23d2ef62f055efc74a998e3c108a3cdb43 Signed-off-by: Alex Baldwin <alexbaldwinmusic@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
531 B
Makefile
21 lines
531 B
Makefile
################################################################################
|
|
#
|
|
# liblo
|
|
#
|
|
################################################################################
|
|
|
|
LIBLO_VERSION = 0.29
|
|
LIBLO_SITE = http://downloads.sourceforge.net/project/liblo/liblo/$(LIBLO_VERSION)
|
|
|
|
LIBLO_LICENSE = LGPL-2.1+
|
|
LIBLO_LICENSE_FILES = COPYING
|
|
LIBLO_INSTALL_STAGING = YES
|
|
|
|
# IPv6 support broken, issue known upstream
|
|
# werror - not needed for release.
|
|
LIBLO_CONF_OPTS += \
|
|
--disable-ipv6 \
|
|
--disable-werror
|
|
|
|
$(eval $(autotools-package))
|