buildroot/package/cannelloni/cannelloni.mk
Fabrice Fontaine 589d9018b7 package/cannelloni: bump to version 1.0.0
- Drop patch (already in version)
- Add -std=c++11 to fix the build with gcc 4.8 as it has been removed by
  upstream since version 1.0.0 and
  2558902f0b

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-06-20 22:58:32 +02:00

21 lines
606 B
Makefile

################################################################################
#
# cannelloni
#
################################################################################
CANNELLONI_VERSION = 1.0.0
CANNELLONI_SITE = $(call github,mguentner,cannelloni,v$(CANNELLONI_VERSION))
CANNELLONI_LICENSE = GPL-2.0
CANNELLONI_LICENSE_FILES = gpl-2.0.txt
CANNELLONI_CONF_OPTS = -DCMAKE_CXX_FLAGS="-std=c++11"
ifeq ($(BR2_PACKAGE_LKSCTP_TOOLS),y)
CANNELLONI_CONF_OPTS += -DSCTP_SUPPORT=ON
CANNELLONI_DEPENDENCIES += lksctp-tools
else
CANNELLONI_CONF_OPTS += -DSCTP_SUPPORT=OFF
endif
$(eval $(cmake-package))