Commit 5afafaae authored by David Bender's avatar David Bender Committed by Peter Korsgaard
Browse files

new package: freeradius-client



Signed-off-by: default avatarDavid 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: default avatarYann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 4c7e93a6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -821,6 +821,7 @@ menu "Networking"
	source "package/czmq/Config.in"
	source "package/filemq/Config.in"
	source "package/flickcurl/Config.in"
	source "package/freeradius-client/Config.in"
	source "package/fmlib/Config.in"
	source "package/geoip/Config.in"
	source "package/glib-networking/Config.in"
+20 −0
Original line number Diff line number Diff line
lib/rc-md5: fix build when nettle is enabled

rc-md5 uses size_t, which is defined in string.h. This include is
missing when built against nettle.

Just add it.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

diff -durN freeradius-client-1.1.7.orig/lib/rc-md5.h freeradius-client-1.1.7/lib/rc-md5.h
--- freeradius-client-1.1.7.orig/lib/rc-md5.h	2015-01-19 17:18:26.000000000 +0100
+++ freeradius-client-1.1.7/lib/rc-md5.h	2015-01-25 22:56:07.815626476 +0100
@@ -13,6 +13,7 @@
 
 #ifdef HAVE_NETTLE
 
+#include <string.h> /* size_t */
 #include <nettle/md5-compat.h>
 
 #else
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_FREERADIUS_CLIENT
	bool "freeradius-client"
	help
	  FreeRADIUS Client is a framework and library for
	  writing RADIUS Clients.

	  http://wiki.freeradius.org/project/Radiusclient
+2 −0
Original line number Diff line number Diff line
# Locally computed
sha256  eada2861b8f4928e3ac6b5bbfe11e92cd6cdcacfce40cae1085e77c1b6add0e9  freeradius-client-1.1.7.tar.gz
+22 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))