mirror of
https://github.com/openwrt/packages.git
synced 2026-01-10 03:41:29 +00:00
Merge pull request #4977 from sartura/dhcpcd_bump_to_6.11.5
dhcpcd: bump to 6.11.5
This commit is contained in:
@@ -8,18 +8,18 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=dhcpcd
|
||||
PKG_VERSION:=6.4.3
|
||||
PKG_VERSION:=6.11.5
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_URL:=ftp://roy.marples.name/pub/dhcpcd \
|
||||
http://roy.marples.name/downloads/dhcpcd
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_HASH:=36ad01619ee81ac3815467d0157c38a14f5db464371326e97f719be362d5ab9c
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||
PKG_HASH:=6f9674dc7e27e936cc787175404a6171618675ecfb6903ab9887b1b66a87d69e
|
||||
|
||||
PKG_LICENSE:=BSD-2c
|
||||
PKG_LICENSE_FILES:=
|
||||
|
||||
PKG_MAINTAINER:=Roy Marples <roy@marples.name>
|
||||
PKG_MAINTAINER:=Marko Ratkaj <marko.ratkaj@sartura.hr>
|
||||
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_INSTALL:=1
|
||||
@@ -45,8 +45,11 @@ define Package/dhcpcd/description
|
||||
* ARP ping profiles
|
||||
endef
|
||||
|
||||
CONFIGURE_ARGS+= --prefix=/ --sbindir=/sbin \
|
||||
--libexecdir=/lib/dhcpcd --dbdir=/var/dhcpcd
|
||||
CONFIGURE_ARGS+= \
|
||||
--prefix=/ \
|
||||
--sbindir=/sbin \
|
||||
--libexecdir=/lib/dhcpcd \
|
||||
--dbdir=/var/dhcpcd
|
||||
|
||||
define Package/dhcpcd/install
|
||||
$(INSTALL_DIR) $(1)/sbin $(1)/etc $(1)/lib/dhcpcd/dhcpcd-hooks
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
--- a/dhcp6.c
|
||||
+++ b/dhcp6.c
|
||||
@@ -1047,8 +1047,8 @@ logsend:
|
||||
|
||||
ctx = ifp->ctx->ipv6;
|
||||
dst.sin6_scope_id = ifp->index;
|
||||
- ctx->sndhdr.msg_name = (caddr_t)&dst;
|
||||
- ctx->sndhdr.msg_iov[0].iov_base = (caddr_t)state->send;
|
||||
+ ctx->sndhdr.msg_name = (void *)&dst;
|
||||
+ ctx->sndhdr.msg_iov[0].iov_base = (void *)state->send;
|
||||
ctx->sndhdr.msg_iov[0].iov_len = state->send_len;
|
||||
|
||||
/* Set the outbound interface */
|
||||
Reference in New Issue
Block a user