diff --git a/ChangeLog b/ChangeLog index b19bc2ab..8fc05523 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,10 @@ WARNING: Extra debug logging enabled for checking internet news dupes. v0.35.03 06-Jul-2002 + general: + Now compiles and installs on HP-PARISC hardware, tested with + Debian 3.0 on a HP 712/80. + upgrade: After installation restart mbtask. Start mbsetup, enter global configuration and exit and save. diff --git a/TODO b/TODO index ed78b790..76b1e1a0 100644 --- a/TODO +++ b/TODO @@ -77,6 +77,8 @@ mbfido: N: Long email gated to netmail and splitted in several messages, the second and higher messages get the wrong flavor. + L: Add %from command to areamgr/filemgr. + mbcico: L: Implement modem connect response translation for ISDN lines, i.e. make the CAUSE responses human readable. see McMail for this diff --git a/lib/signame.c b/lib/signame.c index 783fd6c2..0f124544 100644 --- a/lib/signame.c +++ b/lib/signame.c @@ -1,11 +1,10 @@ /***************************************************************************** * - * File ..................: signame.c + * $Id$ * Purpose ...............: Signal names - * Last modification date : 19-May-2001 * ***************************************************************************** - * Copyright (C) 1997-2001 + * Copyright (C) 1997-2002 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 @@ -83,15 +82,28 @@ char SigName[32][16] = { "NOSIGNAL", #ifdef __alpha__ char SigName[32][16] = { "NOSIGNAL", - "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", - "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", - "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", - "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", - "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", - "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", - "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", - "SIGINFO", "SIGUSR1", "SIGUSR2"}; - + "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", + "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", + "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", + "SIGPIPE", "SIGALRM", "SIGTERM", "SIGURG", + "SIGSTOP", "SIGTSTP", "SIGCONT", "SIGCHLD", + "SIGTTIN", "SIGTTOU", "SIGIO", "SIGXCPU", + "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", + "SIGINFO", "SIGUSR1", "SIGUSR2"}; + +#endif + +#ifdef __hppa__ + +char SigName[32][16] = { "NOSIGNAL", + "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", + "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", + "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", + "SIGPIPE", "SIGALRM", "SIGTERM", "SIGUSR1", + "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGVTALRM", + "SIGPROF", "SIGIO", "SIGWINCH", "SIGSTOP", + "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", + "SIGURG", "SIGLOST", "SIGUNUSED"}; #endif diff --git a/lib/strutil.c b/lib/strutil.c index bcb848fb..a3700c60 100644 --- a/lib/strutil.c +++ b/lib/strutil.c @@ -361,6 +361,8 @@ char *OsCPU() return (char *)"Sparc"; #elif __alpha__ return (char *)"Alpha"; +#elif __hppa__ + return (char *)"HPPA"; #else return (char *)"Unknown"; #endif diff --git a/mbmon/common.c b/mbmon/common.c index 53f84cf1..1b0f1e5c 100644 --- a/mbmon/common.c +++ b/mbmon/common.c @@ -937,6 +937,19 @@ char SigName[32][16] = { "NOSIGNAL", "SIGXFSZ", "SIGVTALRM", "SIGPROF", "SIGWINCH", "SIGINFO", "SIGUSR1", "SIGUSR2"}; +#endif + +#ifdef __hppa__ + +char SigName[32][16] = { "NOSIGNAL", + "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", + "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", + "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", + "SIGPIPE", "SIGALRM", "SIGTERM", "SIGUSR1", + "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGVTALRM", + "SIGPROF", "SIGIO", "SIGWINCH", "SIGSTOP", + "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", + "SIGURG", "SIGLOST", "SIGUNUSED"}; #endif diff --git a/mbtask/signame.c b/mbtask/signame.c index 1a93525b..2f0078a5 100644 --- a/mbtask/signame.c +++ b/mbtask/signame.c @@ -92,3 +92,17 @@ char SigName[32][16] = { "NOSIGNAL", #endif +#ifdef __hppa__ + +char SigName[32][16] = { "NOSIGNAL", + "SIGHUP", "SIGINT", "SIGQUIT", "SIGILL", + "SIGTRAP", "SIGABRT", "SIGEMT", "SIGFPE", + "SIGKILL", "SIGBUS", "SIGSEGV", "SIGSYS", + "SIGPIPE", "SIGALRM", "SIGTERM", "SIGUSR1", + "SIGUSR2", "SIGCHLD", "SIGPWR", "SIGVTALRM", + "SIGPROF", "SIGIO", "SIGWINCH", "SIGSTOP", + "SIGTSTP", "SIGCONT", "SIGTTIN", "SIGTTOU", + "SIGURG", "SIGLOST", "SIGUNUSED"}; + +#endif +