ca1b486910
Add python3 dependencies to avoid the following build failure raised
since the addition of the package in commit
27b8d0ba8c
:
Makefile:576: *** libffi is in the dependency chain of python3 that has added it to its _DEPENDENCIES variable without selecting it or depending on it from Config.in. Stop.
Fixes:
- http://autobuild.buildroot.org/results/2893c213f49d37a0878dcf14ec68ef991471c70f
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
38 lines
975 B
Plaintext
38 lines
975 B
Plaintext
config BR2_PACKAGE_NTPSEC
|
||
bool "ntpsec"
|
||
depends on BR2_USE_MMU # python3
|
||
depends on BR2_USE_WCHAR # python3
|
||
depends on BR2_TOOLCHAIN_HAS_THREADS # python3
|
||
depends on !BR2_STATIC_LIBS # python3
|
||
select BR2_PACKAGE_LIBCAP
|
||
select BR2_PACKAGE_OPENSSL
|
||
select BR2_PACKAGE_PYTHON3
|
||
help
|
||
NTPsec project - a secure, hardened, and improved
|
||
implementation of Network Time Protocol derived
|
||
from NTP Classic, Dave Mills’s original.
|
||
|
||
Provides things like ntpd, ntpdate, ntpq, etc...
|
||
|
||
https://www.ntpsec.org/
|
||
|
||
if BR2_PACKAGE_NTPSEC
|
||
|
||
config BR2_PACKAGE_NTPSEC_CLASSIC_MODE
|
||
bool "classic-mode"
|
||
help
|
||
Enable strict configuration and log-format compatibility
|
||
with NTP Classic.
|
||
|
||
config BR2_PACKAGE_NTPSEC_NTS
|
||
bool "NTS support"
|
||
help
|
||
Enable Network Time Security (NTS) support.
|
||
|
||
endif
|
||
|
||
comment "ntpsec needs a toolchain w/ wchar, threads, dynamic library"
|
||
depends on BR2_USE_MMU
|
||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||
BR2_STATIC_LIBS
|