36602fd41a
Fix the following build failure raised since bump to version 0.6.2 in commitc54f85ca0d
and1e98727ae9
: /home/buildroot/autobuild/instance-2/output-1/host/opt/ext-toolchain/arm-buildroot-uclinux-uclibcgnueabi/bin/ld.real: seatd-launch.p/seatd-launch_seatd-launch.c.o: in function `main': seatd-launch.c:(.text.startup+0x8a): undefined reference to `fork' Fixes: - http://autobuild.buildroot.org/results/5219b6dac714886c7fa4d3687a13b9dff8338df2 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
543 B
Plaintext
24 lines
543 B
Plaintext
menuconfig BR2_PACKAGE_SEATD
|
|
bool "seatd"
|
|
select BR2_PACKAGE_SEATD_BUILTIN \
|
|
if !BR2_PACKAGE_SYSTEMD_LOGIND && !BR2_PACKAGE_SEATD_DAEMON
|
|
help
|
|
Seat management daemon and support library.
|
|
|
|
https://git.sr.ht/~kennylevinsen/seatd
|
|
|
|
if BR2_PACKAGE_SEATD
|
|
|
|
config BR2_PACKAGE_SEATD_BUILTIN
|
|
bool "builtin backend"
|
|
help
|
|
Builtin in-process seatd implementation inside libseat.
|
|
|
|
config BR2_PACKAGE_SEATD_DAEMON
|
|
bool "seatd daemon"
|
|
depends on BR2_USE_MMU # fork()
|
|
help
|
|
Build the seatd daemon and support for it inside libseat.
|
|
|
|
endif
|