diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-07-16 11:18:07 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-07-17 00:08:25 +0200 |
commit | 5061e1c2047d2fbcd35bcc0b065b420172dcc43a (patch) | |
tree | 0963c298176ec06be7a67e682d1fdc3f7f16192b /package/dhcp/Config.in | |
parent | 1eb59f598f52b65b3d3adfcf74729091e95015f0 (diff) | |
download | buildroot-novena-5061e1c2047d2fbcd35bcc0b065b420172dcc43a.tar.gz buildroot-novena-5061e1c2047d2fbcd35bcc0b065b420172dcc43a.zip |
dhcp: Bump to 4.1.1-P1 and convert to autotools
dhcp 3.0.5 was causing build issues due to its build system not based
on the autotools. Instead of work-arounding dhcp 3.0.5 issues, this
commit bumps to 4.1.1 which uses the autotools as the build
system. The package is therefore converted to the autotools
infrastructure.
The dhcp_xecute patch is no longer needed, this feature seems to have
been merged into the upstream dhcp (according to the manpage).
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/dhcp/Config.in')
-rw-r--r-- | package/dhcp/Config.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/dhcp/Config.in b/package/dhcp/Config.in index caf273fbb..eeb237c5b 100644 --- a/package/dhcp/Config.in +++ b/package/dhcp/Config.in @@ -1,4 +1,4 @@ -config BR2_PACKAGE_ISC_DHCP +config BR2_PACKAGE_DHCP bool "DHCP support" help DHCP relay agent from the ISC DHCP distribution. @@ -7,21 +7,21 @@ config BR2_PACKAGE_ISC_DHCP config BR2_PACKAGE_DHCP_SERVER bool "dhcp server" - depends on BR2_PACKAGE_ISC_DHCP + depends on BR2_PACKAGE_DHCP help DHCP server from the ISC DHCP distribution. config BR2_PACKAGE_DHCP_RELAY bool "dhcp relay" - depends on BR2_PACKAGE_ISC_DHCP + depends on BR2_PACKAGE_DHCP help DHCP relay agent from the ISC DHCP distribution. config BR2_PACKAGE_DHCP_CLIENT bool "dhcp client" - depends on BR2_PACKAGE_ISC_DHCP + depends on BR2_PACKAGE_DHCP help DHCP client from the ISC DHCP distribution. |