]> sjero.net Git - wget/blob - windows/config.h.bor
[svn] Don't define HAVE_LIMITS_H, Wget no longer uses it.
[wget] / windows / config.h.bor
1 /* Configuration header file.
2    Copyright (C) 1995, 1996, 1997, 1998, 2004
3    Free Software Foundation, Inc.
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19    In addition, as a special exception, the Free Software Foundation
20    gives permission to link the code of its release of Wget with the
21    OpenSSL project's "OpenSSL" library (or with modified versions of it
22    that use the same license as the "OpenSSL" library), and distribute
23    the linked executables.  You must obey the GNU General Public License
24    in all respects for all of the code used other than "OpenSSL".  If you
25    modify this file, you may extend this exception to your version of the
26    file, but you are not obligated to do so.  If you do not wish to do
27    so, delete this exception statement from your version.  */
28
29
30 #ifndef CONFIG_H
31 #define CONFIG_H
32
33 #define HAVE_SNPRINTF 1
34
35 #define HAVE_MEMMOVE 1
36 #define ftruncate chsize
37 #define inline __inline
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 /* Define to empty if the keyword does not work.  */
51 /* #undef const */
52
53 /* Define to `unsigned' if <sys/types.h> doesn't define.  */
54 /* #undef size_t */
55
56 /* Define if your architecture is big endian (with the most
57    significant byte first).  */
58 #undef WORDS_BIGENDIAN
59
60 /* Define this if you want the NLS support.  */
61 #undef ENABLE_NLS
62
63 /* Define if you want the FTP support for Opie compiled in.  */
64 #define ENABLE_OPIE 1
65
66 /* Define if you want the HTTP Digest Authorization compiled in.  */
67 #define ENABLE_DIGEST 1
68
69 /* Define if you want the NTLM authorization support compiled in. */
70 #ifdef HAVE_SSL
71 # define ENABLE_NTLM
72 #endif
73
74 /* Define if you want the debug output support compiled in.  */
75 #define ENABLE_DEBUG 1
76
77 /* Define if you have sys/time.h header. */
78 #undef HAVE_SYS_TIME_H
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 strdup function.  */
87 #define HAVE_STRDUP 1
88
89 /* Define if you have the strcasecmp function. */
90 #define HAVE_STRCASECMP 1
91
92 /* Define if you have the strncasecmp function. */
93 #define HAVE_STRNCASECMP 1
94
95 /* Define if you have the strptime function. */
96 #undef HAVE_STRPTIME
97
98 /* Define if you have the symlink function. */
99 #undef HAVE_SYMLINK
100
101 /* Define if you have the <unistd.h> header file.  */
102 #undef HAVE_UNISTD_H
103
104 /* Define if you have the <utime.h> header file.  */
105 #define HAVE_UTIME_H 1
106
107 /* Define if you have the <sys/utime.h> header file.  */
108 #undef HAVE_SYS_UTIME_H
109
110 /* Define if you have the <sys/select.h> header file.  */
111 #undef HAVE_SYS_SELECT_H
112
113 /* Define if you have the <pwd.h> header file.  */
114 #undef HAVE_PWD_H
115
116 /* Define to be the name of the operating system.  */
117 #define OS_TYPE "Windows"
118
119 #define CTRLBREAK_BACKGND 1
120
121 /* Define if we're compiling in support for MD5.  */
122 #define HAVE_MD5 1
123
124 /* Define if we're using Solaris libmd5.  */
125 #undef HAVE_SOLARIS_MD5
126
127 /* Define if we're using builtin (GNU) md5.c.  */
128 #define HAVE_BUILTIN_MD5 1
129
130 /* Define if you have the isatty function.  */
131 #define HAVE_ISATTY 1
132
133 /* Define to the length of short. */
134 #define SIZEOF_SHORT 2
135
136 /* Define to the length of int. */
137 #define SIZEOF_INT 4
138
139 /* Define to the length of long. */
140 #define SIZEOF_LONG 4
141
142 /* Defined to int or size_t on systems without socklen_t.  */
143 #define socklen_t int
144
145 /* Define if you have uint32_t.  */
146 /* #define HAVE_UINT32_T */
147
148 #endif /* CONFIG_H */