5afafaaeaf
Signed-off-by: David Bender <codehero@gmail.com> [yann.morin.1998@free.fr: - add optional dependency to nettle - fix build against nettle - switch to using the ftp for release, instead of github - add missing dependency to host-pkgconf - remove extraneous configure options, we already pass them - drop extraneous ac_cv_func_memcmp_working, we already pass it - drop extraneous ac_cv_func_uname, it is properly found - add hash file - tweak help entry ] [Peter: license is BSD-2c] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
664 B
Makefile
23 lines
664 B
Makefile
################################################################################
|
|
#
|
|
# freeradius-client
|
|
#
|
|
################################################################################
|
|
|
|
FREERADIUS_CLIENT_VERSION = 1.1.7
|
|
FREERADIUS_CLIENT_SITE = ftp://ftp.freeradius.org/pub/freeradius/
|
|
FREERADIUS_CLIENT_LICENSE = BSD-2c
|
|
FREERADIUS_CLIENT_LICENSE_FILES = COPYRIGHT
|
|
FREERADIUS_CLIENT_INSTALL_STAGING = YES
|
|
|
|
FREERADIUS_CLIENT_DEPENDENCIES = host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_NETTLE),y)
|
|
FREERADIUS_CLIENT_DEPENDENCIES += nettle
|
|
FREERADIUS_CLIENT_CONF_OPTS += --with-nettle=yes
|
|
else
|
|
FREERADIUS_CLIENT_CONF_OPTS += --with-nettle=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|