mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-04 10:53:30 +08:00
29d29569eb
Fix the following build failure raised since bump of glibc to version 2.39 in commitb5680f53d6
: /home/autobuild/autobuild/instance-7/output-1/build/openswan-3.0.0/programs/pluto/xauth.c:36:10: fatal error: crypt.h: No such file or directory 36 | #include <crypt.h> | ^~~~~~~~~ Fixes:b5680f53d6
- http://autobuild.buildroot.org/results/df7cce809e3e4aa92e700a3fc5105c6c20f21f6b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
463 B
Plaintext
16 lines
463 B
Plaintext
config BR2_PACKAGE_OPENSWAN
|
|
bool "openswan"
|
|
depends on BR2_USE_MMU # iproute2
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 # iproute2
|
|
select BR2_PACKAGE_GMP
|
|
select BR2_PACKAGE_IPROUTE2
|
|
select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
|
|
help
|
|
Openswan is an implementation of IPsec for Linux
|
|
|
|
http://www.openswan.org
|
|
|
|
comment "openswan needs a toolchain w/ headers >= 3.4"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
|