e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
20 lines
625 B
Makefile
20 lines
625 B
Makefile
#############################################################
|
|
#
|
|
# tcpreplay
|
|
#
|
|
#############################################################
|
|
|
|
TCPREPLAY_VERSION = 3.4.3
|
|
TCPREPLAY_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/tcpreplay
|
|
TCPREPLAY_CONF_ENV = tr_cv_libpcap_version=">= 0.7.0"
|
|
TCPREPLAY_CONF_OPT = --with-libpcap=$(STAGING_DIR)/usr
|
|
TCPREPLAY_AUTORECONF = YES
|
|
TCPREPLAY_DEPENDENCIES = libpcap
|
|
|
|
# libpcap may depend on symbols in libusb as well
|
|
TCPREPLAY_LIBS = -lpcap $(if $(BR2_PACKAGE_LIBUSB),-lusb-1.0)
|
|
TCPREPLAY_CONF_ENV += ac_cv_search_pcap_close='$(TCPREPLAY_LIBS)'
|
|
|
|
$(eval $(autotools-package))
|
|
|