740dffc6a8
Fix the following build failure raised since bump of glibc to version 2.39 in commitb5680f53d6
: /home/buildroot/autobuild/run/instance-1/output-1/host/lib/gcc/arc-buildroot-linux-gnu/13.1.1/../../../../arc-buildroot-linux-gnu/bin/ld: auth.o: in function `cupsdAuthorize': auth.c:(.text+0xdba): undefined reference to `crypt' Fixes:b5680f53d6
- http://autobuild.buildroot.org/results/39b72d4e14895f901590d7e3404f69b4573d2cd2 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
17 lines
462 B
Plaintext
17 lines
462 B
Plaintext
config BR2_PACKAGE_CUPS
|
|
bool "cups"
|
|
# needs libstdcpp for ppdc
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
# needs threads for ippserver
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# needs fork()
|
|
depends on BR2_USE_MMU
|
|
select BR2_PACKAGE_LIBXCRYPT if BR2_TOOLCHAIN_USES_GLIBC
|
|
help
|
|
The Common Unix Printing System
|
|
|
|
https://openprinting.github.io/cups
|
|
|
|
comment "cups needs a toolchain w/ C++, threads"
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|