]> sjero.net Git - wget/blob - windows/config.h.bor
[svn] Updated dependencies of connect$o to include utils.h
[wget] / windows / config.h.bor
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 /* Borland C does not define __STDC__ when the Borland extensions are
23    enabled, but you need those extensions to compile <windows.h>.  */
24 #if !defined(__STDC__) && defined(__BORLANDC__)
25 # define __STDC__ 1
26 #endif
27
28 #define HAVE_MEMMOVE
29 #define ftruncate chsize
30 #define inline __inline
31
32 /* Define if the free Borland C++Builder 5.5 command-line compiler is used,
33    because its utime() has a bug. */
34 #define HACK_BCC_UTIME_BUG
35
36 #ifdef HACK_BCC_UTIME_BUG
37 #define utime borland_utime
38 #endif
39
40 /* Define if you have the <alloca.h> header file.  */
41 #undef HAVE_ALLOCA_H
42
43 /* For Borland C++ 5.5, alloca is defined in the <malloc.h> header file. */
44 #include <malloc.h>
45
46 /* Define to empty if the keyword does not work.  */
47 /* #undef const */
48
49 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
50 /* #undef size_t */
51
52 /* Define if you have the ANSI C header files.  */
53 #define STDC_HEADERS 1
54
55 /* Define as the return type of signal handlers (int or void).  */
56 #define RETSIGTYPE int
57
58 /* Define if your architecture is big endian (with the most
59    significant byte first).  */
60 #undef WORDS_BIGENDIAN
61
62 /* Define this if you want the NLS support.  */
63 #undef ENABLE_NLS
64
65 /* Define if you want the FTP support for Opie compiled in.  */
66 #define USE_OPIE 1
67
68 /* Define if you want the HTTP Digest Authorization compiled in.  */
69 #define USE_DIGEST 1
70
71 /* Define if you want the debug output support compiled in.  */
72 #define DEBUG
73
74 /* Define if you have sys/time.h header. */
75 #undef HAVE_SYS_TIME_H
76
77 /* Define if you can safely include both <sys/time.h> and <time.h>.  */
78 #undef TIME_WITH_SYS_TIME
79
80 /* Define if you have struct utimbuf.  */
81 #define HAVE_STRUCT_UTIMBUF 1
82
83 /* Define if you have the gethostbyname function.  */
84 /* #undef HAVE_GETHOSTBYNAME */
85
86 /* Define if you have the uname function.  */
87 #undef HAVE_UNAME
88
89 /* Define if you have the gethostname function.  */
90 #define HAVE_GETHOSTNAME 1
91
92 /* Define if you have the select function.  */
93 #define HAVE_SELECT 1
94
95 /* Define if you have the gettimeofday function.  */
96 #undef HAVE_GETTIMEOFDAY
97
98 /* Define if you have the strdup function.  */
99 #define HAVE_STRDUP 1
100
101 /* Define if you have the sys/utsname.h header. */
102 #undef HAVE_SYS_UTSNAME_H
103
104 /* Define if you have the strerror function. */
105 #define HAVE_STRERROR 1
106
107 /* Define if you have the strstr function. */
108 #define HAVE_STRSTR 1
109
110 /* Define if you have the strcasecmp function. */
111 #define HAVE_STRCASECMP 1
112
113 /* Define if you have the strncasecmp function. */
114 #define HAVE_STRNCASECMP 1
115
116 /* Define if you have the strptime function. */
117 #undef HAVE_STRPTIME
118
119 /* Define if you have the mktime function. */
120 #define HAVE_MKTIME 1
121
122 /* Define if you have the symlink function. */
123 #undef HAVE_SYMLINK
124
125 /* Define if you have the signal function. */
126 #undef HAVE_SIGNAL
127
128 /* Define if you have the <stdarg.h> header file.  */
129 #define HAVE_STDARG_H 1
130
131 /* Define if you have the <stdlib.h> header file.  */
132 #define HAVE_STDLIB_H 1
133
134 /* Define if you have the <string.h> header file.  */
135 #define HAVE_STRING_H 1
136
137 /* Define if you have the <unistd.h> header file.  */
138 /* #define HAVE_UNISTD_H 1 */
139 #undef HAVE_UNISTD_H
140
141 /* Define if you have the <utime.h> header file.  */
142 #define HAVE_UTIME_H 1
143
144 /* Define if you have the <sys/utime.h> header file.  */
145 #undef HAVE_SYS_UTIME_H
146
147 /* Define if you have the <sys/select.h> header file.  */
148 #undef HAVE_SYS_SELECT_H
149
150 /* Define if you have the <pwd.h> header file.  */
151 #undef HAVE_PWD_H
152
153 /* Define if you have the <signal.h> header file.  */
154 #undef HAVE_SIGNAL_H
155
156 /* Define to be the name of the operating system.  */
157 #define OS_TYPE "Windows"
158
159 #define CTRLBREAK_BACKGND 1
160
161 /* Define if you wish to compile with socks support.  */
162 /* #undef HAVE_SOCKS */
163
164 /* Define to 1 if ANSI function prototypes are usable.  */
165 #define PROTOTYPES 1
166
167 /* Define if we're compiling in support for MD5.  */
168 #define HAVE_MD5 1
169
170 /* Define if we're using Solaris libmd5.  */
171 #undef HAVE_SOLARIS_MD5
172
173 /* Define if we're using builtin (GNU) md5.c.  */
174 #define HAVE_BUILTIN_MD5 1
175
176 /* Define if you have the isatty function.  */
177 #define HAVE_ISATTY
178
179
180 #endif /* CONFIG_H */