AndroidConfig.h revision bb8ebabfd47805e0d72273e91492f215a9994c00
1/*
2 * Copyright (C) 2005 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 * Android config -- "FreeBSD".  Used for desktop x86 FreeBSD.
19 */
20#ifndef _ANDROID_CONFIG_H
21#define _ANDROID_CONFIG_H
22
23/*
24 * make sure we are building for FreeBSD
25 */
26#ifndef OS_FREEBSD
27#define OS_FREEBSD
28#endif
29/*
30 * ===========================================================================
31 *                              !!! IMPORTANT !!!
32 * ===========================================================================
33 *
34 * This file is included by ALL C/C++ source files.  Don't put anything in
35 * here unless you are absolutely certain it can't go anywhere else.
36 *
37 * Any C++ stuff must be wrapped with "#ifdef __cplusplus".  Do not use "//"
38 * comments.
39 */
40
41/*
42 * Threading model.  Choose one:
43 *
44 * HAVE_PTHREADS - use the pthreads library.
45 * HAVE_WIN32_THREADS - use Win32 thread primitives.
46 *  -- combine HAVE_CREATETHREAD, HAVE_CREATEMUTEX, and HAVE__BEGINTHREADEX
47 */
48#define HAVE_PTHREADS
49
50/*
51 * Do we have the futex syscall?
52 */
53/* #define HAVE_FUTEX */
54
55/*
56 * Process creation model.  Choose one:
57 *
58 * HAVE_FORKEXEC - use fork() and exec()
59 * HAVE_WIN32_PROC - use CreateProcess()
60 */
61#define HAVE_FORKEXEC
62
63/*
64 * Process out-of-memory adjustment.  Set if running on Linux,
65 * where we can write to /proc/<pid>/oom_adj to modify the out-of-memory
66 * badness adjustment.
67 */
68/* #define HAVE_OOM_ADJ */
69
70/*
71 * IPC model.  Choose one:
72 *
73 * HAVE_SYSV_IPC - use the classic SysV IPC mechanisms (semget, shmget).
74 * HAVE_MACOSX_IPC - use Macintosh IPC mechanisms (sem_open, mmap).
75 * HAVE_WIN32_IPC - use Win32 IPC (CreateSemaphore, CreateFileMapping).
76 * HAVE_ANDROID_IPC - use Android versions (?, mmap).
77 */
78#define HAVE_SYSV_IPC
79
80/*
81 * Memory-mapping model. Choose one:
82 *
83 * HAVE_POSIX_FILEMAP - use the Posix sys/mmap.h
84 * HAVE_WIN32_FILEMAP - use Win32 filemaps
85 */
86#define  HAVE_POSIX_FILEMAP
87
88/*
89 * Define this if you have <termio.h>
90 */
91/* #define  HAVE_TERMIO_H */
92
93/*
94 * Define this if you have <sys/sendfile.h>
95 */
96/* #define  HAVE_SYS_SENDFILE_H 1 */
97
98/*
99 * Define this if you build against MSVCRT.DLL
100 */
101/* #define HAVE_MS_C_RUNTIME */
102
103/*
104 * Define this if you have sys/uio.h
105 */
106#define  HAVE_SYS_UIO_H
107
108/*
109 * Define this if your platforms implements symbolic links
110 * in its filesystems
111 */
112#define HAVE_SYMLINKS
113
114/*
115 * Define this if we have localtime_r().
116 */
117#define HAVE_LOCALTIME_R
118
119/*
120 * Define this if we have gethostbyname_r().
121 */
122/* #define HAVE_GETHOSTBYNAME_R */
123
124/*
125 * Define this if we have ioctl().
126 */
127#define HAVE_IOCTL
128
129/*
130 * Define this if we want to use WinSock.
131 */
132/* #define HAVE_WINSOCK */
133
134/*
135 * Define this if have clock_gettime() and friends
136 *
137 * Desktop Linux has this in librt, but it's broken in goobuntu, yielding
138 * mildly or wildly inaccurate results.
139 */
140#define HAVE_POSIX_CLOCKS
141
142/*
143 * Define this if we have pthread_cond_timedwait_monotonic() and
144 * clock_gettime(CLOCK_MONOTONIC).
145 */
146/* #define HAVE_TIMEDWAIT_MONOTONIC */
147
148/*
149 * Define this if we have linux style epoll()
150 */
151/* #define HAVE_EPOLL */
152
153/*
154 * Endianness of the target machine.  Choose one:
155 *
156 * HAVE_ENDIAN_H -- have endian.h header we can include.
157 * HAVE_LITTLE_ENDIAN -- we are little endian.
158 * HAVE_BIG_ENDIAN -- we are big endian.
159 */
160/* #define HAVE_ENDIAN_H */
161#define HAVE_LITTLE_ENDIAN
162
163/*
164 * Define this if you have sys/endian.h
165 * NOTE: mutually exclusive with HAVE_ENDIAN_H
166 */
167#define HAVE_SYS_ENDIAN_H
168
169/*
170 * We need to choose between 32-bit and 64-bit off_t.  All of our code should
171 * agree on the same size.  For desktop systems, use 64-bit values,
172 * because some of our libraries (e.g. wxWidgets) expect to be built that way.
173 */
174#define _FILE_OFFSET_BITS 64
175#define _LARGEFILE_SOURCE 1
176
177/*
178 * Defined if we have the backtrace() call for retrieving a stack trace.
179 * Needed for CallStack to operate; if not defined, CallStack is
180 * non-functional.
181 */
182#define HAVE_BACKTRACE 0
183
184/*
185 * Defined if we have the dladdr() call for retrieving the symbol associated
186 * with a memory address.  If not defined, stack crawls will not have symbolic
187 * information.
188 */
189#define HAVE_DLADDR 1
190
191/*
192 * Defined if we have the cxxabi.h header for demangling C++ symbols.  If
193 * not defined, stack crawls will be displayed with raw mangled symbols
194 */
195#define HAVE_CXXABI 0
196
197/*
198 * Defined if we have the gettid() system call.
199 */
200/* #define HAVE_GETTID */
201
202/*
203 * Defined if we have the sched_setscheduler() call
204 */
205#define HAVE_SCHED_SETSCHEDULER
206
207/*
208 * Add any extra platform-specific defines here.
209 */
210
211/*
212 * Define if we have <malloc.h> header
213 */
214#define HAVE_MALLOC_H
215
216/*
217 * Define if we have Linux-style non-filesystem Unix Domain Sockets
218 */
219
220/*
221 * What CPU architecture does this platform use?
222 */
223#define ARCH_X86
224
225
226/*
227 * Define if we have Linux's inotify in <sys/inotify.h>.
228 */
229/*#define HAVE_INOTIFY 1*/
230
231/*
232 * Define if we have madvise() in <sys/mman.h>
233 */
234#define HAVE_MADVISE 1
235
236/*
237 * Define if tm struct has tm_gmtoff field
238 */
239#define HAVE_TM_GMTOFF 1
240
241/*
242 * Define if dirent struct has d_type field
243 */
244#define HAVE_DIRENT_D_TYPE 1
245
246/*
247 * Define if libc includes Android system properties implementation.
248 */
249/* #define HAVE_LIBC_SYSTEM_PROPERTIES */
250
251/*
252 * Define if system provides a system property server (should be
253 * mutually exclusive with HAVE_LIBC_SYSTEM_PROPERTIES).
254 */
255#define HAVE_SYSTEM_PROPERTY_SERVER
256
257/*
258 * sprintf() format string for shared library naming.
259 */
260#define OS_SHARED_LIB_FORMAT_STR    "lib%s.so"
261
262/*
263 * type for the third argument to mincore().
264 */
265#define MINCORE_POINTER_TYPE char *
266
267/*
268 * Do we have the sigaction flag SA_NOCLDWAIT?
269 */
270#define HAVE_SA_NOCLDWAIT
271
272/*
273 * Define if we include <sys/mount.h> for statfs()
274 */
275#define INCLUDE_SYS_MOUNT_FOR_STATFS 1
276
277/*
278 * The default path separator for the platform
279 */
280#define OS_PATH_SEPARATOR '/'
281
282/*
283 * Is the filesystem case sensitive?
284 */
285#define OS_CASE_SENSITIVE
286
287/*
288 * Define if <sys/socket.h> exists.
289 */
290#define HAVE_SYS_SOCKET_H 1
291
292/*
293 * Define if the strlcpy() function exists on the system.
294 */
295#define HAVE_STRLCPY 1
296
297/*
298 * Define if the open_memstream() function exists on the system.
299 */
300/* #define HAVE_OPEN_MEMSTREAM 1 */
301
302/*
303 * Define if the BSD funopen() function exists on the system.
304 */
305#define HAVE_FUNOPEN 1
306
307/*
308 * Define if prctl() exists
309 */
310/* #define HAVE_PRCTL 1 */
311
312/*
313 * Define if writev() exists
314 */
315#define HAVE_WRITEV 1
316
317/*
318 * Define if <alloca.h> does not exist
319 * NOTE: <alloca.h> defines alloca() which
320 *   on FreeBSD is defined in <stdlib.h>
321 */
322#define HAVE_NO_ALLOCA_H
323
324/*
325 * Defines CLOCK_PROCESS_CPUTIME_ID for clock_gettime()
326 * XXX: CLOCK_PROF seems to be commonly used replacement
327 */
328#ifndef  CLOCK_PROCESS_CPUTIME_ID
329#define CLOCK_PROCESS_CPUTIME_ID CLOCK_PROF
330#endif
331
332/*
333 * Define if <stdint.h> exists.
334 */
335/* #define HAVE_STDINT_H */
336
337/*
338 * Define if <stdbool.h> exists.
339 */
340/* #define HAVE_STDBOOL_H */
341
342/*
343 * Define if <sched.h> exists.
344 */
345#define HAVE_SCHED_H 1
346
347/*
348 * Define if pread() exists
349 */
350#define HAVE_PREAD 1
351/*
352 * Define if we have st_mtim in struct stat
353 */
354#define HAVE_STAT_ST_MTIM 1
355
356/*
357 * Define if printf() supports %zd for size_t arguments
358 */
359#define HAVE_PRINTF_ZD 1
360
361#endif /*_ANDROID_CONFIG_H*/
362