]> sjero.net Git - wget/blob - src/sysdep.h
[svn] Expect strpbrk and mktime to exist.
[wget] / src / sysdep.h
1 /* Dirty system-dependent hacks.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or (at
9 your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 /* This file is included by wget.h.  Random .c files need not include
31    it.  */
32
33 #ifndef SYSDEP_H
34 #define SYSDEP_H
35
36 /* Must include these, so we can test for the missing stat macros and
37    define them as necessary.  */
38 #include <sys/types.h>
39 #include <sys/stat.h>
40
41 #ifdef HAVE_INTTYPES_H
42 # include <inttypes.h>
43 #endif
44
45 #ifdef WINDOWS
46 /* Windows doesn't have some functions normally found on Unix-like
47    systems, such as strcasecmp, strptime, etc.  Include mswindows.h so
48    we get the declarations for their replacements in mswindows.c, as
49    well as to pick up Windows-specific includes and constants.  To be
50    able to test for such features, the file must be included as early
51    as possible.  */
52 # include <mswindows.h>
53 #endif
54
55 /* Provide support for C99-type boolean type "bool".  This blurb comes
56    straight from the Autoconf 2.59 manual. */
57 #if HAVE_STDBOOL_H
58 # include <stdbool.h>
59 #else
60 # if ! HAVE__BOOL
61 #  ifdef __cplusplus
62 typedef bool _Bool;
63 #  else
64 typedef unsigned char _Bool;
65 #  endif
66 # endif
67 # define bool _Bool
68 # define false 0
69 # define true 1
70 # define __bool_true_false_are_defined 1
71 #endif
72
73 /* Needed for compilation under OS/2: */
74 #ifdef __EMX__
75 # ifndef S_ISLNK
76 #  define S_ISLNK(m) 0
77 # endif
78 # ifndef lstat
79 #  define lstat stat
80 # endif
81 #endif /* __EMX__ */
82
83 /* Reportedly, stat() macros are broken on some old systems.  Those
84    systems will have to fend for themselves, as I will not introduce
85    new code to handle it.
86
87    However, I will add code for *missing* macros, and the following
88    are reportedly missing from many systems.  */
89 #ifndef S_ISLNK
90 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
91 #endif
92 #ifndef S_ISDIR
93 # define S_ISDIR(m) (((m) & (_S_IFMT)) == (_S_IFDIR))
94 #endif
95 #ifndef S_ISREG
96 # define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
97 #endif
98
99 /* Define a large integral type useful for storing large sizes that
100    exceed sizes of one download, such as when printing the sum of all
101    downloads.  Note that this has nothing to do with large file
102    support, which determines the wgint type.  This should be as large
103    as possible even on systems where when wgint is 32-bit; also,
104    unlike wgint, this can be a floating point type.
105
106    We use a 64-bit integral type where available, `double' otherwise.
107    It's hard to print LARGE_INT's portably, but fortunately it's
108    rarely needed.  */
109
110 #if SIZEOF_LONG >= 8
111 /* Long is large enough: use it.  */
112 typedef long LARGE_INT;
113 # define LARGE_INT_FMT "%ld"
114 #elif SIZEOF_LONG_LONG >= 8
115 /* Long long is large enough: use it.  */
116 typedef long long LARGE_INT;
117 # define LARGE_INT_FMT "%lld"
118 #elif WINDOWS
119 /* Use __int64 under Windows. */
120 typedef __int64 LARGE_INT;
121 # define LARGE_INT_FMT "%I64"
122 #else
123 /* Large integer type unavailable; fake it with `double'.  */
124 typedef double LARGE_INT;
125 # define LARGE_INT_FMT "%.0f"
126 #endif
127
128 /* These are needed so we can #define struct_stat to struct _stati64
129    under Windows. */
130 #ifndef struct_stat
131 # define struct_stat struct stat
132 #endif
133 #ifndef struct_fstat
134 # define struct_fstat struct stat
135 #endif
136
137 /* For CHAR_BIT, LONG_MAX, etc. */
138 #include <limits.h>
139
140 #ifndef CHAR_BIT
141 # define CHAR_BIT 8
142 #endif
143
144 /* Used by wget.h to define SIZEOF_WGINT. */
145 #ifndef LONG_MAX
146 # define LONG_MAX ((long) ~((unsigned long)1 << (CHAR_BIT * sizeof (long) - 1)))
147 #endif
148 #ifndef LLONG_MAX
149 # define LLONG_MAX ((long long) ~((unsigned long long)1 << (CHAR_BIT * sizeof (long long) - 1)))
150 #endif
151
152 /* These are defined in cmpt.c if missing, so we must declare
153    them.  */
154 #ifndef HAVE_STRCASECMP
155 int strcasecmp ();
156 #endif
157 #ifndef HAVE_STRNCASECMP
158 int strncasecmp ();
159 #endif
160 #ifndef HAVE_STRPTIME
161 char *strptime ();
162 #endif
163
164 /* These are defined in snprintf.c.  It would be nice to have an
165    snprintf.h, though.  */
166 #ifndef HAVE_SNPRINTF
167 int snprintf ();
168 #endif
169 #ifndef HAVE_VSNPRINTF
170 int vsnprintf ();
171 #endif
172
173 /* Some systems (Linux libc5, "NCR MP-RAS 3.0", and others) don't
174    provide MAP_FAILED, a symbolic constant for the value returned by
175    mmap() when it doesn't work.  Usually, this constant should be -1.
176    This only makes sense for files that use mmap() and include
177    sys/mman.h *before* sysdep.h, but doesn't hurt others.  */
178
179 #ifndef MAP_FAILED
180 # define MAP_FAILED ((void *) -1)
181 #endif
182
183 /* Enable system fnmatch only on systems where fnmatch.h is usable and
184    which are known to have a non-broken fnmatch implementation.
185    Currently those include glibc-based systems and Solaris.  One could
186    add more, but fnmatch is not that large, so it might be better to
187    play it safe.  */
188 #ifdef HAVE_WORKING_FNMATCH_H
189 # if defined __GLIBC__ && __GLIBC__ >= 2
190 #  define SYSTEM_FNMATCH
191 # endif
192 # ifdef solaris
193 #  define SYSTEM_FNMATCH
194 # endif
195 #endif /* HAVE_WORKING_FNMATCH_H */
196
197 #ifdef SYSTEM_FNMATCH
198 # include <fnmatch.h>
199 #else  /* not SYSTEM_FNMATCH */
200 /* Define fnmatch flags.  Undef them first to avoid warnings in case
201    an evil library include chose to include system fnmatch.h.  */
202 # undef FNM_PATHNAME
203 # undef FNM_NOESCAPE
204 # undef FNM_PERIOD
205 # undef FNM_NOMATCH
206
207 # define FNM_PATHNAME   (1 << 0) /* No wildcard can ever match `/'.  */
208 # define FNM_NOESCAPE   (1 << 1) /* Backslashes don't quote special chars.  */
209 # define FNM_PERIOD     (1 << 2) /* Leading `.' is matched only explicitly.  */
210 # define FNM_NOMATCH    1
211
212 /* Declare the function minimally. */
213 int fnmatch ();
214 #endif
215
216 /* Provide sig_atomic_t if the system doesn't.  */
217 #ifndef HAVE_SIG_ATOMIC_T
218 typedef int sig_atomic_t;
219 #endif
220
221 /* Provide uint32_t on the platforms that don't define it.  Although
222    most code should be agnostic about integer sizes, some code really
223    does need a 32-bit integral type.  Such code should use uint32_t.
224    (The exception is gnu-md5.[ch], which uses its own detection for
225    portability across platforms.)  */
226
227 #ifndef HAVE_UINT32_T
228 # if SIZEOF_INT == 4
229 typedef unsigned int uint32_t;
230 # else
231 #  if SIZEOF_LONG == 4
232 typedef unsigned long uint32_t;
233 #  else
234 #   if SIZEOF_SHORT == 4
235 typedef unsigned short uint32_t;
236 #   else
237  #error "Cannot determine a 32-bit unsigned integer type"
238 #   endif
239 #  endif
240 # endif
241 #endif
242
243 #endif /* SYSDEP_H */