Commit 5de7f269 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

dhcpcd: bump to version 6.4.0



Now with support for static builds.

Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 074b3c7c
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
config BR2_PACKAGE_DHCPCD
	bool "dhcpcd"
	# No support for AI_ADDRCONFIG
	depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
		!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
	depends on !BR2_PREFER_STATIC_LIB
	depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2
	help
	  An RFC2131 compliant DHCP client

	  http://roy.marples.name/downloads/dhcpcd

comment "dhcpcd needs a toolchain w/ dynamic library"
	depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
		!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
	depends on BR2_PREFER_STATIC_LIB
+6 −1
Original line number Diff line number Diff line
@@ -4,15 +4,20 @@
#
################################################################################

DHCPCD_VERSION = 6.1.0
DHCPCD_VERSION = 6.4.0
DHCPCD_SOURCE = dhcpcd-$(DHCPCD_VERSION).tar.bz2
DHCPCD_SITE = http://roy.marples.name/downloads/dhcpcd
DHCPCD_DEPENDENCIES = host-pkgconf
DHCPCD_LICENSE = BSD-2c

ifeq ($(BR2_INET_IPV6),)
	DHCPCD_CONFIG_OPT += --disable-ipv6
endif

ifeq ($(BR2_PREFER_STATIC_LIB),y)
	DHCPCD_CONFIG_OPT += --enable-static
endif

ifeq ($(BR2_USE_MMU),)
	DHCPCD_CONFIG_OPT += --disable-fork
endif