1/* configh.dos -- hand-massaged config.h file for MS-DOS builds         -*-C-*-
2
3Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
42004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
5This file is part of GNU Make.
6
7GNU Make is free software; you can redistribute it and/or modify it under the
8terms of the GNU General Public License as published by the Free Software
9Foundation; either version 3 of the License, or (at your option) any later
10version.
11
12GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License along with
17this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19/* Include this header to make __DJGPP_MINOR__ available because DJGPP ports
20   of GCC 4.3.0 and later no longer do it automatically.  */
21#include <sys/version.h>
22
23/* Many things are defined already by a system header.  */
24#include <sys/config.h>
25
26#if __DJGPP__ > 2 || __DJGPP_MINOR__ > 1
27
28/* Define to 1 if `sys_siglist' is declared by <signal.h> or <unistd.h>. */
29# define SYS_SIGLIST_DECLARED 1
30
31/* Define to 1 if the C library defines the variable `_sys_siglist'.  */
32# define HAVE_DECL_SYS_SIGLIST 1
33
34#else
35
36/* Define NSIG.  */
37# define NSIG SIGMAX
38
39#endif
40
41/* Use high resolution file timestamps if nonzero. */
42#define FILE_TIMESTAMP_HI_RES 0
43
44/* Define to 1 if you have `alloca', as a function or macro. */
45#define HAVE_ALLOCA 1
46
47/* Define to 1 if you have the fdopen function.  */
48#define HAVE_FDOPEN 1
49
50/* Define to 1 if you have the `getgroups' function. */
51#define HAVE_GETGROUPS 1
52
53/* Define to 1 if you have the <memory.h> header file.  */
54#define HAVE_MEMORY_H 1
55
56/* Define to 1 if you have the mkstemp function.  */
57#define HAVE_MKSTEMP 1
58
59/* Define to 1 if you have the `mktemp' function. */
60#define HAVE_MKTEMP 1
61
62/* Define to 1 if you have the `setlinebuf' function. */
63#define HAVE_SETLINEBUF 1
64
65/* Define to 1 if you have the `setvbuf' function. */
66#define HAVE_SETVBUF 1
67
68#define SCCS_GET "get"
69
70/* Define to `unsigned long' or `unsigned long long'
71   if <inttypes.h> doesn't define.  */
72#define uintmax_t unsigned long long
73
74/* Define the type of the first arg to select().  */
75#define fd_set_size_t int
76
77/* Define to 1 if you have the select function.  */
78#define HAVE_SELECT 1
79
80/* Define to 1 if your compiler conforms to the ANSI C standard. */
81#define HAVE_ANSI_COMPILER 1
82
83/* Define to 1 if you have the <stdarg.h> header file. */
84#define HAVE_STDARG_H 1
85
86/* Define to 1 if you have the vprintf library function.  */
87#undef HAVE_VPRINTF
88#define HAVE_VPRINTF 1
89
90/* Define to 1 if you have the stricmp function.  */
91#define HAVE_STRICMP 1
92
93/* Name of the package */
94#define PACKAGE "%PACKAGE%"
95
96/* Define to the address where bug reports for this package should be sent. */
97#define PACKAGE_BUGREPORT "bug-%PACKAGE%@gnu.org"
98
99/* Define to the full name of this package. */
100#define PACKAGE_NAME "GNU %PACKAGE%"
101
102/* Define to the full name and version of this package. */
103#define PACKAGE_STRING "GNU %PACKAGE% %VERSION%"
104
105/* Define to the one symbol short name of this package. */
106#define PACKAGE_TARNAME "%PACKAGE%"
107
108/* Define to the version of this package. */
109#define PACKAGE_VERSION "%VERSION%"
110
111/* Define to 1 if the C compiler supports function prototypes. */
112#define PROTOTYPES 1
113
114/* Version number of package */
115#define VERSION "%VERSION%"
116
117/* Build host information. */
118#define MAKE_HOST "i386-pc-msdosdjgpp"
119
120/* Grok DOS paths (drive specs and backslash path element separators) */
121#define HAVE_DOS_PATHS
122