mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://github.com/stevegrubb/libcap-ng/blob/v0.9.3/ChangeLog
The source tarball is not distributed on the project site anymore so we
switch to the github helper and need to enable autoreconf.
Added dependency to BR2_TOOLCHAIN_HAS_SYNC_4 to fix a build error:
/home/bernd/buildroot/test-libcap/bootlin-sparc-uclibc/host/opt/ext-toolchain/bin/../lib/gcc/sparc-buildroot-linux-uclibc/14.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld:
../src/.libs/libcap-ng.so: undefined reference to `__sync_bool_compare_and_swap_4'
due to this upstream commit added in version 0.9.2:
ba2e9e0319
Added _POST_EXTRACT_HOOKS and dependency to host-pkgconf to fix
autoreconf errors.
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Julien Olivain <ju.o@free.fr>
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_OPENVPN
|
|
bool "openvpn"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libcap-ng
|
|
select BR2_PACKAGE_LIBCAP_NG
|
|
select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_MBEDTLS
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
|
|
help
|
|
OpenVPN is a full-featured SSL VPN solution which can
|
|
accommodate a wide range of configurations, including road
|
|
warrior access, home/office/campus telecommuting, WiFi
|
|
security, secure branch office linking, and enterprise-scale
|
|
remote access solutions with load balancing, failover, and
|
|
fine-grained access-controls.
|
|
|
|
http://openvpn.net/
|
|
|
|
if BR2_PACKAGE_OPENVPN
|
|
|
|
config BR2_PACKAGE_OPENVPN_LZ4
|
|
bool "LZ4 compression"
|
|
default y
|
|
select BR2_PACKAGE_LZ4
|
|
help
|
|
Enable LZ4 compression.
|
|
|
|
config BR2_PACKAGE_OPENVPN_LZO
|
|
bool "LZO compression"
|
|
default y
|
|
select BR2_PACKAGE_LZO
|
|
help
|
|
Enable LZO compression.
|
|
|
|
config BR2_PACKAGE_OPENVPN_SMALL
|
|
bool "Optimize for small size"
|
|
help
|
|
Make OpenVPN as small as possible.
|
|
You loose eurephia, debugging info, help messages and more.
|
|
It saves around 100 KiB in binary file size.
|
|
|
|
endif
|