VirtualBox

source: kBuild/trunk/src/kmk/configh.dos.template@ 3387

Last change on this file since 3387 was 3140, checked in by bird, 6 years ago

kmk: Merged in changes from GNU make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6 / https://git.savannah.gnu.org/git/make.git).

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

© 2023 Oracle
ContactPrivacy policyTerms of Use