On the OpenWrt build bots the compile currently fails: cc1: error: /builder/shared-workdir/build/sdk/staging_dir/target-arm_cortex-a5+vfpv4_musl_eabi/include: No such file or directory [-Werror=missing-include-dirs] cc1: all warnings being treated as errors (Or rather, it _would_ fail like this if libmbim compiled successfully.) The directory in question gets added to TARGET_CPPFLAGS by rules.mk. Nothing usually gets installed to that directory, so unsurprisingly it may not exist on the build bots. On first glance this problem cannot be reproduced. But once autoreconf is called this becomes possible. If called without "--enable-more-warnings", configure adds -Werror to the flags. This commit adds "--enable-more-warnings=yes" to the build. This way the extra warnings are kept in place, but they aren't turned into errors no more. "PKG_FIXUP:=autoreconf" is also added so that it's easier to forecast build failures on the build bots when preparing future pull request. Last but not least "--disable-silent-rules" is added, because more output is usually welcome for debugging, be it on the build bots or at home/the office. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
103 lines
2.5 KiB
Makefile
103 lines
2.5 KiB
Makefile
#
|
|
# Copyright (C) 2016 Velocloud Inc.
|
|
# Copyright (C) 2016 Aleksander Morgado <aleksander@aleksander.es>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libqmi
|
|
PKG_VERSION:=1.24.0
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://www.freedesktop.org/software/libqmi
|
|
PKG_HASH:=aeb69f90c273467cce246176cba0967c6413f1995a976992770a597c4fe28c79
|
|
|
|
PKG_MAINTAINER:=Nicholas Smith <nicholas.smith@telcoantennas.com.au>
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/libqmi
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libmbim
|
|
TITLE:=Helper library to talk to QMI enabled modems
|
|
URL:=https://www.freedesktop.org/wiki/Software/libqmi
|
|
LICENSE:=LGPL-2.0-or-later
|
|
LICENSE_FILES:=COPYING.LIB
|
|
endef
|
|
|
|
define Package/libqmi/description
|
|
Helper library talk to QMI enabled modems.
|
|
Add qmi-utils for extra utilities.
|
|
endef
|
|
|
|
define Package/qmi-utils
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libqmi
|
|
TITLE:=Utilities to talk to QMI enabled modems
|
|
URL:=https://www.freedesktop.org/wiki/Software/libqmi
|
|
LICENSE:=GPL-2.0-or-later
|
|
LICENSE_FILES:=COPYING
|
|
endef
|
|
|
|
define Package/libqmi-utils/description
|
|
Utils to talk to QMI enabled modems
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-static \
|
|
--disable-gtk-doc \
|
|
--disable-gtk-doc-html \
|
|
--disable-gtk-doc-pdf \
|
|
--disable-silent-rules \
|
|
--enable-firmware-update \
|
|
--enable-mbim-qmux \
|
|
--enable-more-warnings=yes \
|
|
--without-udev \
|
|
--without-udev-base-dir
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/include/libqmi-glib \
|
|
$(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libqmi*.so* \
|
|
$(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/qmi-glib.pc \
|
|
$(1)/usr/lib/pkgconfig
|
|
endef
|
|
|
|
define Package/libqmi/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/libqmi*.so.* \
|
|
$(1)/usr/lib/
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/qmi-proxy $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/qmi-utils/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/qmicli $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/qmi-network $(1)/usr/bin/
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/qmi-firmware-update $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libqmi))
|
|
$(eval $(call BuildPackage,qmi-utils))
|