init: do not fail build if SIGPWR is not defined
Apparently, some *BSD variants (and maybe some other OSes) does not define
SIGPWR signal. So since commit 760fc6debc
, busybox fails to build on
such platforms. Fix this.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
b664f740d9
commit
922fdf6527
@ -1135,7 +1135,9 @@ int init_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
struct sigaction sa;
|
struct sigaction sa;
|
||||||
|
|
||||||
bb_signals(0
|
bb_signals(0
|
||||||
|
#ifdef SIGPWR
|
||||||
+ (1 << SIGPWR) /* halt */
|
+ (1 << SIGPWR) /* halt */
|
||||||
|
#endif
|
||||||
+ (1 << SIGUSR1) /* halt */
|
+ (1 << SIGUSR1) /* halt */
|
||||||
+ (1 << SIGTERM) /* reboot */
|
+ (1 << SIGTERM) /* reboot */
|
||||||
+ (1 << SIGUSR2) /* poweroff */
|
+ (1 << SIGUSR2) /* poweroff */
|
||||||
|
Loading…
Reference in New Issue
Block a user