Fix compile issues on debian ports for GNU Hurd and Linux for s390.
This commit is contained in:
parent
65c2652a22
commit
41824ce2bf
|
@ -164,6 +164,10 @@
|
|||
#define OPSYS "Haiku"
|
||||
#endif
|
||||
|
||||
#if defined(__GNU__)
|
||||
#define OPSYS "Hurd"
|
||||
#endif
|
||||
|
||||
/* Detect CPUs */
|
||||
#if defined(__alpha__) || defined(__alpha)
|
||||
#define CPUINFO "Alpha"
|
||||
|
@ -209,6 +213,10 @@
|
|||
#define CPUINFO "SuperH"
|
||||
#endif
|
||||
|
||||
#if defined(__s390__) || defined(__s390x__)
|
||||
#define CPUINFO "s390"
|
||||
#endif
|
||||
|
||||
/* Misc */
|
||||
#ifdef MSG_NOSIGNAL
|
||||
#define UHUB_SEND_SIGNAL MSG_NOSIGNAL
|
||||
|
|
Loading…
Reference in New Issue