Closes: #4886 [Peter: fix whitespace, C++ dep, optional zlib dep] Signed-off-by: Simon Dawson <spdawson at gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
589 B
Makefile
22 lines
589 B
Makefile
#############################################################
|
|
#
|
|
# protobuf
|
|
#
|
|
#############################################################
|
|
PROTOBUF_VERSION = 2.4.1
|
|
PROTOBUF_SOURCE = protobuf-$(PROTOBUF_VERSION).tar.gz
|
|
PROTOBUF_SITE = http://protobuf.googlecode.com/files/
|
|
|
|
# N.B. Need to use host protoc during cross compilation.
|
|
PROTOBUF_DEPENDENCIES = host-protobuf
|
|
PROTOBUF_CONF_OPT = --with-protoc=$(HOST_DIR)/usr/bin/protoc
|
|
|
|
PROTOBUF_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
PROTOBUF_DEPENDENCIES += zlib
|
|
endif
|
|
|
|
$(eval $(call AUTOTARGETS))
|
|
$(eval $(call AUTOTARGETS,host))
|