It appears that the Redhat 5.1 SPARC doesn't have signal numbers defined for
SIGSTKFLT and SIGPWR.  So, diald.c needs to be fixed up a bit to compile:


    sa.sa_mask = sig_mask;
    sa.sa_flags = 0;

    SIGNAL(SIGHUP, sig_hup);            /* Hangup: modem went down. */
    SIGNAL(SIGINT, sig_intr);           /* Interrupt: take demand dialer down */
[...]
    SIGNAL(SIGTERM, sig_term);          /* Terminate: user take link down */
#if defined(SIGSTKFLT)
    SIGNAL(SIGSTKFLT, stray_signal);
#endif
    SIGNAL(SIGCHLD, sig_chld);          /* reap dead kids */
[...]
    SIGNAL(SIGPOLL, stray_signal);
#if defined(SIGPWR)
    SIGNAL(SIGPWR, stray_signal);
#endif




-- 
Grant Edwards
Rosemount Inc.

[EMAIL PROTECTED]

-
To unsubscribe from this list: send the line "unsubscribe linux-diald" in
the body of a message to [EMAIL PROTECTED]

Reply via email to