diff options
Diffstat (limited to 'Src/system.h')
-rw-r--r-- | Src/system.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Src/system.h b/Src/system.h index e95e2c4cc..60f0dfe05 100644 --- a/Src/system.h +++ b/Src/system.h @@ -267,6 +267,8 @@ struct timezone { # ifndef TIME_H_SELECT_H_CONFLICTS # include <sys/select.h> # endif +#elif defined(SELECT_IN_SYS_SOCKET_H) +# include <sys/socket.h> #endif #ifdef HAVE_SYS_FILIO_H @@ -613,3 +615,8 @@ extern short ospeed; #define ftell ftello #endif #endif + +/* Can't support job control without working tcsetgrp() */ +#ifdef BROKEN_TCSETPGRP +#undef JOB_CONTROL +#endif /* BROKEN_TCSETPGRP */ |