mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
8e7450b63d
Fix the following build failure raised since bump of glibc to version 2.39 in commitb5680f53d6
: /home/buildroot/autobuild/instance-0/output-1/host/lib/gcc/powerpc-buildroot-linux-gnu/13.2.0/../../../../powerpc-buildroot-linux-gnu/bin/ld: src/util.o: in function `Util_checkCredentials': util.c:(.text+0x32e8): undefined reference to `crypt' Fixes:b5680f53d6
- http://autobuild.buildroot.org/results/12b2c6665280dcb813a58d9b025038bacc3b8d51 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
18 lines
577 B
Plaintext
18 lines
577 B
Plaintext
config BR2_PACKAGE_MONIT
|
|
bool "monit"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
|
|
help
|
|
Monit is a free open source utility for managing and
|
|
monitoring, processes, programs, files, directories and
|
|
filesystems on a UNIX system. Monit conducts automatic
|
|
maintenance and repair and can execute meaningful causal
|
|
actions in error situations.
|
|
|
|
http://mmonit.com/monit/
|
|
|
|
comment "monit needs a toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|