mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-09 07:51:59 -09:00
Fixes: https://autobuild.buildroot.net/results/5a5/5a57a82800fb7a47731198effc15bd7044133c4d/ src/modules/rlm_mschap/rlm_mschap.c:1016:54: error: implicit declaration of function 'EVP_rc4'; did you mean 'EVP_md4'? The oldest build error found with a quick search appeared back in July 2024 with freeradius-server 3.2.3 so a backport should be considered: https://autobuild.buildroot.net/results/e2d/e2d77a52f81b0fea1081417c5c80f7991e27810a/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
22 lines
769 B
Plaintext
22 lines
769 B
Plaintext
config BR2_PACKAGE_FREERADIUS_SERVER
|
|
bool "freeradius-server"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS # libtalloc
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_MD4 if BR2_PACKAGE_LIBOPENSSL
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4 if BR2_PACKAGE_LIBOPENSSL
|
|
select BR2_PACKAGE_LIBTALLOC
|
|
select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
|
|
help
|
|
FreeRADIUS is an open source server which implements
|
|
a protocol for remote user Authorization, Authentication
|
|
and Accounting.
|
|
|
|
http://wiki.freeradius.org/
|
|
|
|
comment "freeradius-server needs a glibc toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_USES_GLIBC
|