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