(NSIG) [__DJGPP__ == 2 && __DJGPP_MINOR__ == 1]:

Define; it is undefined in DJGPP v2.01.
This commit is contained in:
Eli Zaretskii 2000-11-22 18:10:10 +00:00
parent fb9fa98d65
commit da7fab49d6
2 changed files with 9 additions and 0 deletions

View file

@ -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.

View file

@ -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\