80e8e75f2a
The autobuilders did not catch the error yet because they failed earlier with other packages, but I am continuing the build using the defconfig from: http://autobuild.buildroot.net/results/6cc/6cc0f8c067e07deea688b9b97284601a596b898c/ [Thomas: replace with upstream patch directly, fetched from Github.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
775 B
Makefile
24 lines
775 B
Makefile
################################################################################
|
|
#
|
|
# radvd
|
|
#
|
|
################################################################################
|
|
|
|
RADVD_VERSION = 2.11
|
|
RADVD_SOURCE = radvd-$(RADVD_VERSION).tar.xz
|
|
RADVD_SITE = http://www.litech.org/radvd/dist
|
|
RADVD_PATCH = \
|
|
https://github.com/reubenhwk/radvd/commit/1d8973e13d89802eee0b648451e2b97ac65cf9e0.patch
|
|
RADVD_DEPENDENCIES = host-bison flex host-flex host-pkgconf
|
|
RADVD_CONF_ENV = ac_cv_prog_cc_c99='-std=gnu99'
|
|
# We're patching configure.ac/Makefile.am.
|
|
RADVD_AUTORECONF = YES
|
|
RADVD_LICENSE = BSD-4c-like
|
|
RADVD_LICENSE_FILES = COPYRIGHT
|
|
|
|
define RADVD_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/radvd/S50radvd $(TARGET_DIR)/etc/init.d/S50radvd
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|