(NSIG) [__DJGPP__ == 2 && __DJGPP_MINOR__ == 1]:
Define; it is undefined in DJGPP v2.01.
This commit is contained in:
parent
fb9fa98d65
commit
da7fab49d6
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-11-22 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* sed2.inp (NSIG) [__DJGPP__ == 2 && __DJGPP_MINOR__ == 1]:
|
||||
Define; it is undefined in DJGPP v2.01.
|
||||
|
||||
2000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* sed2.inp (HAVE_MKSTEMP): Define.
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
#if defined(__DJGPP__) && __DJGPP__ > 1\
|
||||
/* In v2.0 and later almost everything is defined in <sys/config.h> */\
|
||||
#include <sys/config.h>\
|
||||
/* For those who still use DJGPP v2.01 */\
|
||||
#if __DJGPP__ == 2 && __DJGPP_MINOR__ == 1\
|
||||
#define NSIG 320\
|
||||
#endif\
|
||||
#define HAVE_SETITIMER 1\
|
||||
#undef HAVE_SELECT\
|
||||
#undef _LIBC\
|
||||
|
|
Loading…
Add table
Reference in a new issue