]> sjero.net Git - wget/blob - src/sysdep.h
[svn] Rename LARGE_INT to SUM_SIZE_INT, and simplify its handling.
[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 /* These are needed so we can #define struct_stat to struct _stati64
100    under Windows. */
101 #ifndef struct_stat
102 # define struct_stat struct stat
103 #endif
104 #ifndef struct_fstat
105 # define struct_fstat struct stat
106 #endif
107
108 /* For CHAR_BIT, LONG_MAX, etc. */
109 #include <limits.h>
110
111 #ifndef CHAR_BIT
112 # define CHAR_BIT 8
113 #endif
114
115 /* Used by wget.h to define SIZEOF_WGINT. */
116 #ifndef LONG_MAX
117 # define LONG_MAX ((long) ~((unsigned long)1 << (CHAR_BIT * sizeof (long) - 1)))
118 #endif
119 #ifndef LLONG_MAX
120 # define LLONG_MAX ((long long) ~((unsigned long long)1 << (CHAR_BIT * sizeof (long long) - 1)))
121 #endif
122
123 /* These are defined in cmpt.c if missing, so we must declare
124    them.  */
125 #ifndef HAVE_STRCASECMP
126 int strcasecmp ();
127 #endif
128 #ifndef HAVE_STRNCASECMP
129 int strncasecmp ();
130 #endif
131 #ifndef HAVE_STRPTIME
132 char *strptime ();
133 #endif
134
135 /* These are defined in snprintf.c.  It would be nice to have an
136    snprintf.h, though.  */
137 #ifndef HAVE_SNPRINTF
138 int snprintf ();
139 #endif
140 #ifndef HAVE_VSNPRINTF
141 int vsnprintf ();
142 #endif
143
144 /* Some systems (Linux libc5, "NCR MP-RAS 3.0", and others) don't
145    provide MAP_FAILED, a symbolic constant for the value returned by
146    mmap() when it doesn't work.  Usually, this constant should be -1.
147    This only makes sense for files that use mmap() and include
148    sys/mman.h *before* sysdep.h, but doesn't hurt others.  */
149
150 #ifndef MAP_FAILED
151 # define MAP_FAILED ((void *) -1)
152 #endif
153
154 /* Enable system fnmatch only on systems where fnmatch.h is usable and
155    which are known to have a non-broken fnmatch implementation.
156    Currently those include glibc-based systems and Solaris.  One could
157    add more, but fnmatch is not that large, so it might be better to
158    play it safe.  */
159 #ifdef HAVE_WORKING_FNMATCH_H
160 # if defined __GLIBC__ && __GLIBC__ >= 2
161 #  define SYSTEM_FNMATCH
162 # endif
163 # ifdef solaris
164 #  define SYSTEM_FNMATCH
165 # endif
166 #endif /* HAVE_WORKING_FNMATCH_H */
167
168 #ifdef SYSTEM_FNMATCH
169 # include <fnmatch.h>
170 #else  /* not SYSTEM_FNMATCH */
171 /* Define fnmatch flags.  Undef them first to avoid warnings in case
172    an evil library include chose to include system fnmatch.h.  */
173 # undef FNM_PATHNAME
174 # undef FNM_NOESCAPE
175 # undef FNM_PERIOD
176 # undef FNM_NOMATCH
177
178 # define FNM_PATHNAME   (1 << 0) /* No wildcard can ever match `/'.  */
179 # define FNM_NOESCAPE   (1 << 1) /* Backslashes don't quote special chars.  */
180 # define FNM_PERIOD     (1 << 2) /* Leading `.' is matched only explicitly.  */
181 # define FNM_NOMATCH    1
182
183 /* Declare the function minimally. */
184 int fnmatch ();
185 #endif
186
187 /* Provide sig_atomic_t if the system doesn't.  */
188 #ifndef HAVE_SIG_ATOMIC_T
189 typedef int sig_atomic_t;
190 #endif
191
192 /* Provide uint32_t on the platforms that don't define it.  Although
193    most code should be agnostic about integer sizes, some code really
194    does need a 32-bit integral type.  Such code should use uint32_t.
195    (The exception is gnu-md5.[ch], which uses its own detection for
196    portability across platforms.)  */
197
198 #ifndef HAVE_UINT32_T
199 # if SIZEOF_INT == 4
200 typedef unsigned int uint32_t;
201 # else
202 #  if SIZEOF_LONG == 4
203 typedef unsigned long uint32_t;
204 #  else
205 #   if SIZEOF_SHORT == 4
206 typedef unsigned short uint32_t;
207 #   else
208  #error "Cannot determine a 32-bit unsigned integer type"
209 #   endif
210 #  endif
211 # endif
212 #endif
213
214 #endif /* SYSDEP_H */