Ported to HPPA, tested on HP 712/80
This commit is contained in:
parent
d6e80372fd
commit
ca5faeea0d
@ -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.
|
||||
|
2
TODO
2
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
|
||||
|
@ -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
|
||||
@ -92,6 +91,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
|
||||
|
||||
|
@ -361,6 +361,8 @@ char *OsCPU()
|
||||
return (char *)"Sparc";
|
||||
#elif __alpha__
|
||||
return (char *)"Alpha";
|
||||
#elif __hppa__
|
||||
return (char *)"HPPA";
|
||||
#else
|
||||
return (char *)"Unknown";
|
||||
#endif
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user