2a75bf3182
The patch against 0.6.1 has been merged upstream, and has been removed from this package. A small change has been made to the LICENSE file: "Cloudflare, Inc." was added in the copyright declaration. Signed-off-by: Koen Martens <gmc@sonologic.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
26 lines
867 B
Makefile
26 lines
867 B
Makefile
################################################################################
|
|
#
|
|
# capnproto
|
|
#
|
|
################################################################################
|
|
|
|
CAPNPROTO_VERSION = 0.7.0
|
|
CAPNPROTO_SITE = $(call github,capnproto,capnproto,v$(CAPNPROTO_VERSION))
|
|
CAPNPROTO_LICENSE = MIT
|
|
CAPNPROTO_LICENSE_FILES = LICENSE
|
|
CAPNPROTO_INSTALL_STAGING = YES
|
|
# Fetched from Github with no configure script
|
|
CAPNPROTO_AUTORECONF = YES
|
|
CAPNPROTO_CONF_OPTS = --with-external-capnp
|
|
# Needs the capnproto compiler on the host to generate C++ code from message
|
|
# definitions
|
|
CAPNPROTO_DEPENDENCIES = host-autoconf host-capnproto
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
|
CAPNPROTO_CONF_ENV += LIBS=-latomic
|
|
endif
|
|
# The actual source to be compiled is within a 'c++' subdirectory
|
|
CAPNPROTO_SUBDIR = c++
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|