2015-05-02 21:03:33 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# cc-tool
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
CC_TOOL_VERSION = 0.26
|
|
|
|
CC_TOOL_SITE = http://downloads.sourceforge.net/project/cctool
|
|
|
|
CC_TOOL_SOURCE = cc-tool-$(CC_TOOL_VERSION)-src.tgz
|
|
|
|
CC_TOOL_LICENSE = GPLv2
|
|
|
|
CC_TOOL_LICENSE_FILES = COPYING
|
|
|
|
CC_TOOL_DEPENDENCIES = boost libusb
|
|
|
|
|
2015-07-28 17:43:06 +02:00
|
|
|
# we're patching boost.m4
|
|
|
|
CC_TOOL_AUTORECONF = YES
|
|
|
|
|
2015-05-02 21:03:33 +02:00
|
|
|
# Configure script "discovers" boost in /usr/local if not given explicitly
|
|
|
|
CC_TOOL_CONF_OPTS = --with-boost=$(STAGING_DIR)/usr
|
|
|
|
|
2015-05-05 23:36:45 +02:00
|
|
|
# Help boost.m4 find the Boost Regex library, which needs the pthread
|
|
|
|
# library, but isn't detected using a modern (pkg-config) mechanism.
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
|
CC_TOOL_CONF_ENV += LIBS="-lpthread"
|
|
|
|
endif
|
|
|
|
|
2015-05-02 21:03:33 +02:00
|
|
|
$(eval $(autotools-package))
|