socketcand: bump to version 0.3.1

Since version 0.3.0, libconfig has been made optional

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
gilles.talis@gmail.com 2013-06-18 14:22:34 -07:00 committed by Peter Korsgaard
parent 9dab397a4f
commit 53e498da2f
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,5 @@
config BR2_PACKAGE_SOCKETCAND
bool "socketcand"
select BR2_PACKAGE_LIBCONFIG
depends on BR2_TOOLCHAIN_HAS_THREADS
help
Socketcand is a daemon that provides access to CAN interfaces

View File

@ -4,9 +4,14 @@
#
################################################################################
SOCKETCAND_VERSION = 7d06986
SOCKETCAND_VERSION = dc3437ab
SOCKETCAND_SITE = http://github.com/dschanoeh/socketcand/tarball/$(SOCKETCAND_VERSION)
SOCKETCAND_AUTORECONF = YES
ifeq ($(BR2_PACKAGE_LIBCONFIG),y)
SOCKETCAND_DEPENDENCIES = libconfig
else
SOCKETCAND_CONF_OPT = --without-config
endif
$(eval $(autotools-package))