Update buidlroot to version 2016.08.1
This commit is contained in:
@@ -11,12 +11,11 @@
|
||||
# and IPv6 updates.
|
||||
# http://www.spinics.net/lists/netdev/msg279881.html
|
||||
|
||||
IPUTILS_VERSION = c8ff6feaf0442f8efd96ccb415770c54f9e84d47
|
||||
IPUTILS_VERSION = 55828d1fef3fed7f07abcbf7be9282a9662e78c7
|
||||
IPUTILS_SITE = $(call github,iputils,iputils,$(IPUTILS_VERSION))
|
||||
IPUTILS_LICENSE = GPLv2+, BSD-3c, BSD-4c
|
||||
# Only includes a license file for BSD
|
||||
IPUTILS_LICENSE_FILES = ninfod/COPYING
|
||||
IPUTILS_DEPENDENCIES = openssl
|
||||
|
||||
# Build after busybox so target ends up with this package's full
|
||||
# versions of the applications instead of busybox applets.
|
||||
@@ -34,6 +33,34 @@ else
|
||||
IPUTILS_MAKE_OPTS += USE_CAP=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
||||
IPUTILS_MAKE_OPTS += USE_GCRYPT=yes
|
||||
IPUTILS_DEPENDENCIES += libgcrypt
|
||||
# When gettext is enabled (BR2_PACKAGE_GETTEXT=y), and provides libintl
|
||||
# (BR2_NEEDS_GETTEXT=y), libgpg-error will link with libintl, and libgpg-error
|
||||
# is pulled in by libgcrypt. Since iputils doesn't use libtool, we have to link
|
||||
# with libintl explicitly for static linking.
|
||||
ifeq ($(BR2_STATIC_LIBS)$(BR2_NEEDS_GETTEXT)$(BR2_PACKAGE_GETTEXT),yyy)
|
||||
IPUTILS_MAKE_OPTS += ADDLIB='-lintl'
|
||||
endif
|
||||
else
|
||||
IPUTILS_MAKE_OPTS += USE_GCRYPT=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NETTLE),y)
|
||||
IPUTILS_MAKE_OPTS += USE_NETTLE=yes
|
||||
IPUTILS_DEPENDENCIES += nettle
|
||||
else
|
||||
IPUTILS_MAKE_OPTS += USE_NETTLE=no
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
IPUTILS_MAKE_OPTS += USE_CRYPTO=yes
|
||||
IPUTILS_DEPENDENCIES += openssl
|
||||
else
|
||||
IPUTILS_MAKE_OPTS += USE_CRYPTO=no
|
||||
endif
|
||||
|
||||
define IPUTILS_BUILD_CMDS
|
||||
$(MAKE) -C $(@D) $(IPUTILS_MAKE_OPTS)
|
||||
endef
|
||||
@@ -46,7 +73,6 @@ define IPUTILS_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 755 $(@D)/rdisc $(TARGET_DIR)/sbin/rdisc
|
||||
$(INSTALL) -D -m 755 $(@D)/tftpd $(TARGET_DIR)/usr/sbin/in.tftpd
|
||||
$(INSTALL) -D -m 755 $(@D)/tracepath $(TARGET_DIR)/bin/tracepath
|
||||
$(INSTALL) -D -m 755 $(@D)/tracepath6 $(TARGET_DIR)/bin/tracepath6
|
||||
$(INSTALL) -D -m 755 $(@D)/traceroute6 $(TARGET_DIR)/bin/traceroute6
|
||||
endef
|
||||
|
||||
|
||||
Reference in New Issue
Block a user