]> sjero.net Git - wget/blob - windows/config.h.ms
89c01a52ed7c3aaa79a43ce6647666727a8d3ad9
[wget] / windows / config.h.ms
1 /* Configuration header file.
2    Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18
19 #ifndef CONFIG_H
20 #define CONFIG_H
21
22 /* Define if you have the <alloca.h> header file.  */
23 #undef HAVE_ALLOCA_H
24
25 /* Microsoft and Watcom libraries have an alloca function. */
26 char *alloca ();
27
28 /* Define to empty if the keyword does not work.  */
29 /* #undef const */
30
31 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
32 /* #undef size_t */
33
34 /* Define if you have the ANSI C header files.  */
35 #define STDC_HEADERS 1
36
37 /* Define as the return type of signal handlers (int or void).  */
38 #define RETSIGTYPE int
39
40 /* Define if your architecture is big endian (with the most
41    significant byte first).  */
42 #undef WORDS_BIGENDIAN
43
44 /* Define this if you want the NLS support.  */
45 #undef ENABLE_NLS
46
47 /* Define if you want the FTP support for Opie compiled in.  */
48 #define USE_OPIE 1
49
50 /* Define if you want the HTTP Digest Authorization compiled in.  */
51 #define USE_DIGEST 1
52
53 /* Define if you want the debug output support compiled in.  */
54 #define DEBUG
55
56 /* Define if you have sys/time.h header. */
57 #undef HAVE_SYS_TIME_H
58
59 /* Define if you can safely include both <sys/time.h> and <time.h>.  */
60 #undef TIME_WITH_SYS_TIME
61
62 /* Define if you have struct utimbuf.  */
63 #define HAVE_STRUCT_UTIMBUF 1
64
65 /* Define if you have the gethostbyname function.  */
66 /* #undef HAVE_GETHOSTBYNAME */
67
68 /* Define if you have the uname function.  */
69 #undef HAVE_UNAME
70
71 /* Define if you have the gethostname function.  */
72 #define HAVE_GETHOSTNAME 1
73
74 /* Define if you have the select function.  */
75 #define HAVE_SELECT 1
76
77 /* Define if you have the gettimeofday function.  */
78 #undef HAVE_GETTIMEOFDAY
79
80 /* Define if you have the strdup function.  */
81 #define HAVE_STRDUP 1
82
83 /* Define if you have the sys/utsname.h header. */
84 #undef HAVE_SYS_UTSNAME_H
85
86 /* Define if you have the strerror function. */
87 #define HAVE_STRERROR 1
88
89 /* Define if you have the snprintf function.  */
90 #undef HAVE_SNPRINTF
91
92 /* Define if you have the vsnprintf function.  */
93 #undef HAVE_VSNPRINTF
94
95 /* Define if you have the strstr function. */
96 #define HAVE_STRSTR 1
97
98 /* Define if you have the strcasecmp function. */
99 #define HAVE_STRCASECMP 1
100
101 /* Define if you have the strncasecmp function. */
102 #define HAVE_STRNCASECMP 1
103
104 /* Define if you have the strptime function. */
105 #undef HAVE_STRPTIME
106
107 /* Define if you have the mktime function. */
108 #define HAVE_MKTIME 1
109
110 /* Define if you have the symlink function. */
111 #undef HAVE_SYMLINK
112
113 /* Define if you have the signal function. */
114 #undef HAVE_SIGNAL
115
116 /* Define if you have the <stdarg.h> header file.  */
117 #define HAVE_STDARG_H 1
118
119 /* Define if you have the <stdlib.h> header file.  */
120 #define HAVE_STDLIB_H 1
121
122 /* Define if you have the <string.h> header file.  */
123 #define HAVE_STRING_H 1
124
125 /* Define if you have the <unistd.h> header file.  */
126 /* #define HAVE_UNISTD_H 1 */
127 #undef HAVE_UNISTD_H
128
129 /* Define if you have the <utime.h> header file.  */
130 #undef HAVE_UTIME_H
131
132 /* Define if you have the <sys/utime.h> header file.  */
133 #define HAVE_SYS_UTIME_H 1
134
135 /* Define if you have the <sys/select.h> header file.  */
136 #undef HAVE_SYS_SELECT_H
137
138 /* Define if you have the <pwd.h> header file.  */
139 #undef HAVE_PWD_H
140
141 /* Define if you have the <signal.h> header file.  */
142 #undef HAVE_SIGNAL_H
143
144 /* Define to be the name of the operating system.  */
145 #define OS_TYPE "Windows"
146
147 #define CTRLBREAK_BACKGND 1
148
149 /* Define if you wish to compile with socks support.  */
150 /* #undef HAVE_SOCKS */
151
152 /* Define to 1 if ANSI function prototypes are usable.  */
153 #define PROTOTYPES 1
154
155 /* Define if we're compiling in support for MD5.  */
156 #define HAVE_MD5 1
157
158 /* Define if we're using Solaris libmd5.  */
159 #undef HAVE_SOLARIS_MD5
160
161 /* Define if we're using builtin (GNU) md5.c.  */
162 #define HAVE_BUILTIN_MD5 1
163
164 /* Work around VC 6 issues */
165 #define inline __inline
166 #define ftruncate chsize
167
168 /* Define if you have the isatty function.  */
169 #define HAVE_ISATTY 1
170
171 #endif /* CONFIG_H */
172