diff options
author | Paul Smith <psmith@gnu.org> | 1999-04-25 04:30:55 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-04-25 04:30:55 +0000 |
commit | fc0fe4103ac983d88b83dad0daf97664ffa8e04b (patch) | |
tree | 7f2a029706a5547af16132ae451a673936b353bf /configh.dos.template | |
parent | 7f3ffd401903e04637c0e822e152e8dc632264e5 (diff) | |
download | gunmake-fc0fe4103ac983d88b83dad0daf97664ffa8e04b.tar.gz |
* Add new jobserver feature.
* Small updates to the manual
* E.Zaretskii fix for new DJGPP version.
Diffstat (limited to 'configh.dos.template')
-rw-r--r-- | configh.dos.template | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/configh.dos.template b/configh.dos.template index 852b6f8..7eaed6e 100644 --- a/configh.dos.template +++ b/configh.dos.template @@ -1,4 +1,3 @@ -/* Generated automatically from configure.in by autoheader. DO NOT EDIT! */
/* Many things are defined already by a system header. */
#include <sys/config.h>
@@ -9,8 +8,20 @@ /* Version of this package (needed by automake) */
#define VERSION "%VERSION%"
+#if __DJGPP__ > 2 || __DJGPP_MINOR__ > 1
+
+/* Define if `sys_siglist' is declared by <signal.h>. */
+# define SYS_SIGLIST_DECLARED 1
+
+/* Define this if the C library defines the variable `_sys_siglist'. */
+# define HAVE_SYS_SIGLIST 1
+
+#else
+
/* Define NSIG. */
-#define NSIG SIGMAX
+# define NSIG SIGMAX
+
+#endif
/* Define if you have sigsetmask. */
#define HAVE_SIGSETMASK 1
|