23
|
1 /* lvconfig.h
|
|
2 *
|
|
3 * This is a generated file. Please modify 'configure.ac'
|
|
4 */
|
|
5
|
|
6 #ifndef __LV_CONFIG_H__
|
|
7 #define __LV_CONFIG_H__
|
|
8
|
|
9 #ifndef __cplusplus
|
|
10 # define LV_HAVE_ISO_VARARGS (1)
|
|
11 #endif
|
|
12
|
|
13 /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
|
|
14 * is passed ISO vararg support is turned off, and there is no work
|
|
15 * around to turn it on, so we unconditionally turn it off.
|
|
16 */
|
|
17 #if __GNUC__ == 2 && __GNUC_MINOR__ == 95
|
|
18 # undef LV_HAVE_ISO_VARARGS
|
|
19 #endif
|
|
20
|
|
21 #define LV_HAVE_GNUC_VARARGS (1)
|
|
22
|
|
23 #define VISUAL_BIG_ENDIAN (0)
|
|
24 #define VISUAL_LITTLE_ENDIAN (1)
|
|
25
|
|
26 typedef unsigned int visual_size_t;
|
|
27 #define VISUAL_SIZE_T_FORMAT "u"
|
|
28
|
|
29 #define VISUAL_ARCH_X86
|
|
30
|
|
31 #define VISUAL_OS_LINUX
|
|
32
|
|
33 #define VISUAL_HAVE_THREADS
|
|
34
|
|
35 #define VISUAL_THREAD_MODEL_POSIX
|
|
36
|
|
37
|
|
38 #endif /* LV_CONFIG_H */
|
|
39
|