-version bumping
[oweals/gnunet.git] / src / include / platform.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2009, 2012 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/platform.h
23  * @brief plaform specific includes and defines
24  * @author Nils Durner
25  * @author Christian Grothoff
26  * This file should never be included by installed
27  * header files (those starting with "gnunet_").
28  */
29 #ifndef PLATFORM_H
30 #define PLATFORM_H
31
32 #ifndef HAVE_USED_CONFIG_H
33 #define HAVE_USED_CONFIG_H
34 #if HAVE_CONFIG_H
35 #include "gnunet_config.h"
36 #endif
37 #endif
38
39 #ifdef WINDOWS
40 #define BREAKPOINT asm("int $3;");
41 #define GNUNET_SIGCHLD 17
42 #else
43 #define BREAKPOINT
44 #define GNUNET_SIGCHLD SIGCHLD
45 #endif
46
47 #ifdef HAVE_SYS_TYPES_H
48 #include <sys/types.h>
49 #endif
50
51 /**
52  * These may be expensive, but good for debugging...
53  */
54 #define ALLOW_EXTRA_CHECKS GNUNET_YES
55
56 /**
57  * For strptime (glibc2 needs this).
58  */
59 #ifndef _XOPEN_SOURCE
60 #define _XOPEN_SOURCE 499
61 #endif
62
63 #ifndef _REENTRANT
64 #define _REENTRANT
65 #endif
66
67 /* configuration options */
68
69 #define VERBOSE_STATS 0
70
71 #ifdef CYGWIN
72 #include <sys/reent.h>
73 #endif
74
75 #ifdef _MSC_VER
76 #ifndef FD_SETSIZE
77 #define FD_SETSIZE 1024
78 #endif
79 #include <Winsock2.h>
80 #include <ws2tcpip.h>
81 #else
82 #ifndef MINGW
83 #include <netdb.h>
84 #include <sys/socket.h>
85 #include <sys/un.h>
86 #if HAVE_NETINET_IN_H
87 #include <netinet/in.h>
88 #endif
89 #if HAVE_NETINET_IN_SYSTM_H
90 #include <netinet/in_systm.h>
91 #endif
92 #if HAVE_NETINET_IP_H
93 #include <netinet/ip.h>         /* superset of previous */
94 #endif
95 #include <arpa/inet.h>
96 #include <netinet/tcp.h>
97 #include <pwd.h>
98 #include <sys/ioctl.h>
99 #include <sys/wait.h>
100 #include <grp.h>
101 #else
102 #include "winproc.h"
103 #endif
104 #endif
105
106 #include <string.h>
107 #include <stdio.h>
108 #include <stdlib.h>
109 #include <stdint.h>
110 #include <stdarg.h>
111 #include <errno.h>
112 #include <signal.h>
113 #include <libgen.h>
114 #ifdef WINDOWS
115 #include <malloc.h>             /* for alloca(), on other OSes it's in stdlib.h */
116 #endif
117 #ifdef HAVE_MALLOC_H
118 #include <malloc.h>             /* for mallinfo on GNU */
119 #endif
120 #ifndef _MSC_VER
121 #include <unistd.h>             /* KLB_FIX */
122 #endif
123 #include <sys/stat.h>
124 #include <sys/types.h>
125 #ifndef _MSC_VER
126 #include <dirent.h>             /* KLB_FIX */
127 #endif
128 #include <fcntl.h>
129 #include <math.h>
130 #if HAVE_SYS_PARAM_H
131 #include <sys/param.h>
132 #endif
133 #if TIME_WITH_SYS_TIME
134 #include <sys/time.h>
135 #include <time.h>
136 #else
137 #if HAVE_SYS_TIME_H
138 #include <sys/time.h>
139 #else
140 #include <time.h>
141 #endif
142 #endif
143
144 #ifdef SOMEBSD
145 #include <net/if.h>
146 #endif
147 #ifdef FREEBSD
148 #include <semaphore.h>
149 #endif
150 #ifdef DARWIN
151 #include <dlfcn.h>
152 #include <semaphore.h>
153 #include <net/if.h>
154 #endif
155 #if defined(LINUX) || defined(GNU)
156 #include <net/if.h>
157 #endif
158 #ifdef SOLARIS
159 #include <sys/sockio.h>
160 #include <sys/filio.h>
161 #include <sys/loadavg.h>
162 #include <semaphore.h>
163 #endif
164 #if HAVE_UCRED_H
165 #include <ucred.h>
166 #endif
167 #ifdef CYGWIN
168 #include <windows.h>
169 #include <cygwin/if.h>
170 #endif
171 #if HAVE_IFADDRS_H
172 #include <ifaddrs.h>
173 #endif
174 #include <errno.h>
175 #include <limits.h>
176
177 #if HAVE_VFORK_H
178 #include <vfork.h>
179 #endif
180
181 #include <ctype.h>
182 #if HAVE_SYS_RESOURCE_H
183 #include <sys/resource.h>
184 #endif
185
186 #if HAVE_ENDIAN_H
187 #include <endian.h>
188 #endif
189 #if HAVE_SYS_ENDIAN_H
190 #include <sys/endian.h>
191 #endif
192
193 #include "plibc.h"
194
195 #include <locale.h>
196 #ifndef FRAMEWORK_BUILD
197 #include "gettext.h"
198 /**
199  * GNU gettext support macro.
200  */
201 #define _(String) dgettext("gnunet",String)
202 #define LIBEXTRACTOR_GETTEXT_DOMAIN "libextractor"
203 #else
204 #include "libintlemu.h"
205 #define _(String) dgettext("org.gnunet.gnunet",String)
206 #define LIBEXTRACTOR_GETTEXT_DOMAIN "org.gnunet.libextractor"
207 #endif
208
209 #ifdef CYGWIN
210 #define SIOCGIFCONF     _IOW('s', 100, struct ifconf)   /* get if list */
211 #define SIOCGIFFLAGS    _IOW('s', 101, struct ifreq)    /* Get if flags */
212 #define SIOCGIFADDR     _IOW('s', 102, struct ifreq)    /* Get if addr */
213 #endif
214
215 #ifndef MINGW
216 #include <sys/mman.h>
217 #endif
218
219 #ifdef FREEBSD
220 #define __BYTE_ORDER BYTE_ORDER
221 #define __BIG_ENDIAN BIG_ENDIAN
222 #endif
223
224 #ifdef DARWIN
225 #define __BYTE_ORDER BYTE_ORDER
226 #define __BIG_ENDIAN BIG_ENDIAN
227  /* not available on darwin, override configure */
228 #undef HAVE_STAT64
229 #undef HAVE_MREMAP
230 #endif
231
232
233 #if !HAVE_ATOLL
234 long long
235 atoll (const char *nptr);
236 #endif
237
238 #if ENABLE_NLS
239 #include "langinfo.h"
240 #endif
241
242 #ifndef SIZE_MAX
243 #define SIZE_MAX ((size_t)(-1))
244 #endif
245
246 #ifndef O_LARGEFILE
247 #define O_LARGEFILE 0
248 #endif
249
250 /**
251  * AI_NUMERICSERV not defined in windows.  Then we just do without.
252  */
253 #ifndef AI_NUMERICSERV
254 #define AI_NUMERICSERV 0
255 #endif
256
257
258 #if defined(__sparc__)
259 #define MAKE_UNALIGNED(val) ({ __typeof__((val)) __tmp; memmove(&__tmp, &(val), sizeof((val))); __tmp; })
260 #else
261 #define MAKE_UNALIGNED(val) val
262 #endif
263
264 #if WINDOWS
265 #define FDTYPE HANDLE
266 #define SOCKTYPE SOCKET
267 #else
268 #define FDTYPE int
269 #define SOCKTYPE int
270 #endif
271
272 /**
273  * The termination signal
274  */
275 #define GNUNET_TERM_SIG SIGTERM
276
277 #endif