mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
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>
21 lines
586 B
Diff
21 lines
586 B
Diff
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
|