kumquat-buildroot/package/libqmi/libqmi.mk
Simon Dawson 6a3bff298e libqmi: fix autobuild failures
The libqmi build specifies -Werror in the CFLAGS by default. This causes
build failures such as the following.

  http://autobuild.buildroot.net/results/070/070449299aa9025c4bc6769524a6e22d66c92a65/

The -Werror flag can be disabled using a configuration switch.

[Peter: use =no instead and add a comment explaining why]
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2013-11-11 17:24:52 +01:00

20 lines
554 B
Makefile

################################################################################
#
# libqmi
#
################################################################################
LIBQMI_VERSION = 1.4.0
LIBQMI_SITE = http://www.freedesktop.org/software/libqmi/
LIBQMI_SOURCE = libqmi-$(LIBQMI_VERSION).tar.xz
LIBQMI_LICENSE = LGPLv2+ (library), GPLv2+ (programs)
LIBQMI_LICENSE_FILES = COPYING
LIBQMI_INSTALL_STAGING = YES
LIBQMI_DEPENDENCIES = libglib2
# we don't want -Werror
LIBQMI_CONF_OPT = --enable-more-warnings=no
$(eval $(autotools-package))