1/* fficonfig.h.  Generated from fficonfig.h.in by configure.  */
2/* fficonfig.h.in.  Generated from configure.ac by autoheader.  */
3
4/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
5   systems. This function is required for `alloca.c' support on those systems.
6   */
7/* #undef CRAY_STACKSEG_END */
8
9/* Define to 1 if using `alloca.c'. */
10/* #undef C_ALLOCA */
11
12/* Define to the flags needed for the .section .eh_frame directive. */
13#define EH_FRAME_FLAGS "aw"
14
15/* Define this if you want extra debugging. */
16/* #undef FFI_DEBUG */
17
18/* Define this is you do not want support for the raw API. */
19/* #undef FFI_NO_RAW_API */
20
21/* Define this is you do not want support for aggregate types. */
22/* #undef FFI_NO_STRUCTS */
23
24/* Define to 1 if you have `alloca', as a function or macro. */
25#define HAVE_ALLOCA 1
26
27/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
28   */
29#define HAVE_ALLOCA_H 1
30
31/* Define if your assembler supports .cfi_* directives. */
32/* #undef HAVE_AS_CFI_PSEUDO_OP */
33
34/* Define if your assembler supports .register. */
35/* #undef HAVE_AS_REGISTER_PSEUDO_OP */
36
37/* Define if your assembler and linker support unaligned PC relative relocs.
38   */
39/* #undef HAVE_AS_SPARC_UA_PCREL */
40
41/* Define to 1 if you have the <dlfcn.h> header file. */
42#define HAVE_DLFCN_H 1
43
44/* Define if __attribute__((visibility("hidden"))) is supported. */
45/* #undef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE */
46
47/* Define to 1 if you have the <inttypes.h> header file. */
48#define HAVE_INTTYPES_H 1
49
50/* Define if you have the long double type and it is bigger than a double */
51#define HAVE_LONG_DOUBLE 1
52
53/* Define to 1 if you have the `memcpy' function. */
54#define HAVE_MEMCPY 1
55
56/* Define to 1 if you have the <memory.h> header file. */
57#define HAVE_MEMORY_H 1
58
59/* Define to 1 if you have the `mmap' function. */
60#define HAVE_MMAP 1
61
62/* Define if mmap with MAP_ANON(YMOUS) works. */
63#define HAVE_MMAP_ANON 1
64
65/* Define if mmap of /dev/zero works. */
66/* #undef HAVE_MMAP_DEV_ZERO */
67
68/* Define if read-only mmap of a plain file works. */
69#define HAVE_MMAP_FILE 1
70
71/* Define if .eh_frame sections should be read-only. */
72/* #undef HAVE_RO_EH_FRAME */
73
74/* Define to 1 if you have the <stdint.h> header file. */
75#define HAVE_STDINT_H 1
76
77/* Define to 1 if you have the <stdlib.h> header file. */
78#define HAVE_STDLIB_H 1
79
80/* Define to 1 if you have the <strings.h> header file. */
81#define HAVE_STRINGS_H 1
82
83/* Define to 1 if you have the <string.h> header file. */
84#define HAVE_STRING_H 1
85
86/* Define to 1 if you have the <sys/mman.h> header file. */
87#define HAVE_SYS_MMAN_H 1
88
89/* Define to 1 if you have the <sys/stat.h> header file. */
90#define HAVE_SYS_STAT_H 1
91
92/* Define to 1 if you have the <sys/types.h> header file. */
93#define HAVE_SYS_TYPES_H 1
94
95/* Define to 1 if you have the <unistd.h> header file. */
96#define HAVE_UNISTD_H 1
97
98/* Define to 1 if your C compiler doesn't accept -c and -o together. */
99/* #undef NO_MINUS_C_MINUS_O */
100
101/* Name of package */
102#define PACKAGE "libffi"
103
104/* Define to the address where bug reports for this package should be sent. */
105#define PACKAGE_BUGREPORT "http://gcc.gnu.org/bugs.html"
106
107/* Define to the full name of this package. */
108#define PACKAGE_NAME "libffi"
109
110/* Define to the full name and version of this package. */
111#define PACKAGE_STRING "libffi 3.0.6"
112
113/* Define to the one symbol short name of this package. */
114#define PACKAGE_TARNAME "libffi"
115
116/* Define to the version of this package. */
117#define PACKAGE_VERSION "3.0.6"
118
119/* The size of `double', as computed by sizeof. */
120#define SIZEOF_DOUBLE 8
121
122/* The size of `long double', as computed by sizeof. */
123#define SIZEOF_LONG_DOUBLE 16
124
125/* If using the C implementation of alloca, define if you know the
126   direction of stack growth for your system; otherwise it will be
127   automatically deduced at runtime.
128	STACK_DIRECTION > 0 => grows toward higher addresses
129	STACK_DIRECTION < 0 => grows toward lower addresses
130	STACK_DIRECTION = 0 => direction of growth unknown */
131/* #undef STACK_DIRECTION */
132
133/* Define to 1 if you have the ANSI C header files. */
134#define STDC_HEADERS 1
135
136/* Define this if you are using Purify and want to suppress spurious messages.
137   */
138/* #undef USING_PURIFY */
139
140/* Version number of package */
141#define VERSION "3.0.6"
142
143/* Define to 1 if your processor stores words with the most significant byte
144   first (like Motorola and SPARC, unlike Intel and VAX). */
145/* #undef WORDS_BIGENDIAN */
146
147
148#ifdef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
149#ifdef LIBFFI_ASM
150#define FFI_HIDDEN(name) .hidden name
151#else
152#define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
153#endif
154#else
155#ifdef LIBFFI_ASM
156#define FFI_HIDDEN(name)
157#else
158#define FFI_HIDDEN
159#endif
160#endif
161
162