2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / libffi / fficonfig.h.in
blobf982707344f5f3312eb5238431c79a7e1356856c
1 /* fficonfig.h.in. Generated from configure.ac by autoheader. */
3 /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
4 systems. This function is required for `alloca.c' support on those systems.
5 */
6 #undef CRAY_STACKSEG_END
8 /* Define to 1 if using `alloca.c'. */
9 #undef C_ALLOCA
11 /* Define to the flags needed for the .section .eh_frame directive. */
12 #undef EH_FRAME_FLAGS
14 /* Define this if you want extra debugging. */
15 #undef FFI_DEBUG
17 /* Define this is you do not want support for the raw API. */
18 #undef FFI_NO_RAW_API
20 /* Define this is you do not want support for aggregate types. */
21 #undef FFI_NO_STRUCTS
23 /* Define to 1 if you have `alloca', as a function or macro. */
24 #undef HAVE_ALLOCA
26 /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
28 #undef HAVE_ALLOCA_H
30 /* Define if your assembler supports .register. */
31 #undef HAVE_AS_REGISTER_PSEUDO_OP
33 /* Define if your assembler and linker support unaligned PC relative relocs.
35 #undef HAVE_AS_SPARC_UA_PCREL
37 /* Define if __attribute__((visibility("hidden"))) is supported. */
38 #undef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
40 /* Define to 1 if you have the <inttypes.h> header file. */
41 #undef HAVE_INTTYPES_H
43 /* Define if you have the long double type and it is bigger than a double */
44 #undef HAVE_LONG_DOUBLE
46 /* Define to 1 if you have the `memcpy' function. */
47 #undef HAVE_MEMCPY
49 /* Define to 1 if you have the <memory.h> header file. */
50 #undef HAVE_MEMORY_H
52 /* Define to 1 if you have the `mmap' function. */
53 #undef HAVE_MMAP
55 /* Define if mmap with MAP_ANON(YMOUS) works. */
56 #undef HAVE_MMAP_ANON
58 /* Define if mmap of /dev/zero works. */
59 #undef HAVE_MMAP_DEV_ZERO
61 /* Define if read-only mmap of a plain file works. */
62 #undef HAVE_MMAP_FILE
64 /* Define if .eh_frame sections should be read-only. */
65 #undef HAVE_RO_EH_FRAME
67 /* Define to 1 if you have the <stdint.h> header file. */
68 #undef HAVE_STDINT_H
70 /* Define to 1 if you have the <stdlib.h> header file. */
71 #undef HAVE_STDLIB_H
73 /* Define to 1 if you have the <strings.h> header file. */
74 #undef HAVE_STRINGS_H
76 /* Define to 1 if you have the <string.h> header file. */
77 #undef HAVE_STRING_H
79 /* Define to 1 if you have the <sys/mman.h> header file. */
80 #undef HAVE_SYS_MMAN_H
82 /* Define to 1 if you have the <sys/stat.h> header file. */
83 #undef HAVE_SYS_STAT_H
85 /* Define to 1 if you have the <sys/types.h> header file. */
86 #undef HAVE_SYS_TYPES_H
88 /* Define to 1 if you have the <unistd.h> header file. */
89 #undef HAVE_UNISTD_H
91 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
92 #undef NO_MINUS_C_MINUS_O
94 /* Name of package */
95 #undef PACKAGE
97 /* Define to the address where bug reports for this package should be sent. */
98 #undef PACKAGE_BUGREPORT
100 /* Define to the full name of this package. */
101 #undef PACKAGE_NAME
103 /* Define to the full name and version of this package. */
104 #undef PACKAGE_STRING
106 /* Define to the one symbol short name of this package. */
107 #undef PACKAGE_TARNAME
109 /* Define to the version of this package. */
110 #undef PACKAGE_VERSION
112 /* The size of a `double', as computed by sizeof. */
113 #undef SIZEOF_DOUBLE
115 /* The size of a `long double', as computed by sizeof. */
116 #undef SIZEOF_LONG_DOUBLE
118 /* If using the C implementation of alloca, define if you know the
119 direction of stack growth for your system; otherwise it will be
120 automatically deduced at run-time.
121 STACK_DIRECTION > 0 => grows toward higher addresses
122 STACK_DIRECTION < 0 => grows toward lower addresses
123 STACK_DIRECTION = 0 => direction of growth unknown */
124 #undef STACK_DIRECTION
126 /* Define to 1 if you have the ANSI C header files. */
127 #undef STDC_HEADERS
129 /* Define this if you are using Purify and want to suppress spurious messages.
131 #undef USING_PURIFY
133 /* Version number of package */
134 #undef VERSION
136 /* Define to 1 if your processor stores words with the most significant byte
137 first (like Motorola and SPARC, unlike Intel and VAX). */
138 #undef WORDS_BIGENDIAN
141 #ifdef HAVE_HIDDEN_VISIBILITY_ATTRIBUTE
142 #ifdef LIBFFI_ASM
143 #define FFI_HIDDEN(name) .hidden name
144 #else
145 #define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
146 #endif
147 #else
148 #ifdef LIBFFI_ASM
149 #define FFI_HIDDEN(name)
150 #else
151 #define FFI_HIDDEN
152 #endif
153 #endif