~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

Viewing changes to lib/config-win32.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2005-03-23 18:41:29 UTC
  • mto: (3.1.1 lenny) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050323184129-9hgq7luenq51umpu
Tags: upstream-7.12.3
ImportĀ upstreamĀ versionĀ 7.12.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* config.h.  Generated automatically by configure.  */
2
2
/* config.h.in.  Generated automatically from configure.in by autoheader.  */
3
3
 
 
4
#ifndef __CONFIG_WIN32_H
 
5
#define __CONFIG_WIN32_H
 
6
 
4
7
/* Define if on AIX 3.
5
8
   System headers sometimes define this.
6
9
   We just want to avoid a redefinition error message.  */
36
39
#undef SIZEOF_CURL_OFF_T
37
40
#endif
38
41
 
 
42
/* Borland lacks _lseeki64(), so we don't support >2GB files */
 
43
#ifdef __BORLANDC__
 
44
#define SIZEOF_CURL_OFF_T 4
 
45
#else
39
46
#define SIZEOF_CURL_OFF_T 8
 
47
#endif
40
48
 
41
49
/* Define if you have the ANSI C header files.  */
42
50
#define STDC_HEADERS 1
99
107
#define HAVE_STRSTR 1
100
108
 
101
109
/* Define if you have the strtoll function.  */
102
 
#ifdef MINGW32
 
110
#if defined(__MINGW32__) || defined(__WATCOMC__)
103
111
#define HAVE_STRTOLL 1
104
112
#endif
105
113
 
113
121
/*#define HAVE_UNAME 1*/
114
122
 
115
123
/* Define if you have utime() */
 
124
#ifndef __BORLANDC__
116
125
#define HAVE_UTIME 1
 
126
#endif
117
127
 
118
128
/* Define if you have the <alloca.h> header file.  */
119
129
/*#define HAVE_ALLOCA_H 1*/
170
180
#define HAVE_SYS_STAT_H 1
171
181
 
172
182
/* Define if you have the <sys/utime.h> header file */
 
183
#ifndef __BORLANDC__
173
184
#define HAVE_SYS_UTIME_H 1
 
185
#endif
174
186
 
175
187
/* Define if you have the <sys/types.h> header file.  */
176
188
#define HAVE_SYS_TYPES_H 1
223
235
/*************************************************
224
236
 * This section is for compiler specific defines.*
225
237
 *************************************************/
226
 
#if defined(MINGW32) || defined(__WATCOMC__) /* Borland and MS don't have this */
 
238
/* Borland and MS don't have this */
 
239
#if defined(__MINGW32__) || defined(__WATCOMC__) || defined(__LCC__)
227
240
 
228
241
/* Define if you have the <unistd.h> header file.  */
229
242
#define HAVE_UNISTD_H 1
230
243
 
 
244
#else
 
245
 
 
246
#endif
 
247
 
231
248
#endif