blob: 4cee7ec4bbcb089d255bd84e21bb86753cd30b0f [file] [log] [blame]
Alexandre Lision744f7422013-09-25 11:39:37 -04001/* config.h.in. Generated from configure.ac by autoheader. */
2
3/* Custom modes */
4#undef CUSTOM_MODES
5
6/* Assertions */
7#undef ENABLE_ASSERTIONS
8
9/* Debug fixed-point implementation */
10#undef FIXED_DEBUG
11
12/* Compile as fixed-point (for machines without a fast enough FPU) */
13#undef FIXED_POINT
14
15/* Float approximations */
16#undef FLOAT_APPROX
17
18/* Fuzzing */
19#undef FUZZING
20
21/* Define to 1 if you have the <alloca.h> header file. */
22#undef HAVE_ALLOCA_H
23
24/* Define to 1 if you have the <dlfcn.h> header file. */
25#undef HAVE_DLFCN_H
26
27/* Define to 1 if you have the <getopt.h> header file. */
28#undef HAVE_GETOPT_H
29
30/* Define to 1 if you have the <inttypes.h> header file. */
31#undef HAVE_INTTYPES_H
32
33/* Define to 1 if you have the `lrint' function. */
34#undef HAVE_LRINT
35
36/* Define to 1 if you have the `lrintf' function. */
37#undef HAVE_LRINTF
38
39/* Define to 1 if you have the <memory.h> header file. */
40#undef HAVE_MEMORY_H
41
42/* Define to 1 if you have the <stdint.h> header file. */
43#undef HAVE_STDINT_H
44
45/* Define to 1 if you have the <stdlib.h> header file. */
46#undef HAVE_STDLIB_H
47
48/* Define to 1 if you have the <strings.h> header file. */
49#undef HAVE_STRINGS_H
50
51/* Define to 1 if you have the <string.h> header file. */
52#undef HAVE_STRING_H
53
54/* Define to 1 if you have the <sys/stat.h> header file. */
55#undef HAVE_SYS_STAT_H
56
57/* Define to 1 if you have the <sys/types.h> header file. */
58#undef HAVE_SYS_TYPES_H
59
60/* Define to 1 if you have the <unistd.h> header file. */
61#undef HAVE_UNISTD_H
62
63/* Define to 1 if you have the `__malloc_hook' function. */
64#undef HAVE___MALLOC_HOOK
65
66/* Define to the sub-directory in which libtool stores uninstalled libraries.
67 */
68#undef LT_OBJDIR
69
70/* Define to 1 if your C compiler doesn't accept -c and -o together. */
71#undef NO_MINUS_C_MINUS_O
72
73/* This is a build of OPUS */
74#undef OPUS_BUILD
75
76/* Define to the address where bug reports for this package should be sent. */
77#undef PACKAGE_BUGREPORT
78
79/* Define to the full name of this package. */
80#undef PACKAGE_NAME
81
82/* Define to the full name and version of this package. */
83#undef PACKAGE_STRING
84
85/* Define to the one symbol short name of this package. */
86#undef PACKAGE_TARNAME
87
88/* Define to the home page for this package. */
89#undef PACKAGE_URL
90
91/* Define to the version of this package. */
92#undef PACKAGE_VERSION
93
94/* The size of `int', as computed by sizeof. */
95#undef SIZEOF_INT
96
97/* The size of `long', as computed by sizeof. */
98#undef SIZEOF_LONG
99
100/* The size of `long long', as computed by sizeof. */
101#undef SIZEOF_LONG_LONG
102
103/* The size of `short', as computed by sizeof. */
104#undef SIZEOF_SHORT
105
106/* Define to 1 if you have the ANSI C header files. */
107#undef STDC_HEADERS
108
109/* Make use of alloca */
110#undef USE_ALLOCA
111
112/* Use C99 variable-size arrays */
113#undef VAR_ARRAYS
114
115/* Define to empty if `const' does not conform to ANSI C. */
116#undef const
117
118/* Define to `__inline__' or `__inline' if that's what the C compiler
119 calls it, or to nothing if 'inline' is not supported under any name. */
120#ifndef __cplusplus
121#undef inline
122#endif
123
124/* Define to the equivalent of the C99 'restrict' keyword, or to
125 nothing if this is not supported. Do not define if restrict is
126 supported directly. */
127#undef restrict
128/* Work around a bug in Sun C++: it does not support _Restrict or
129 __restrict__, even though the corresponding Sun C compiler ends up with
130 "#define restrict _Restrict" or "#define restrict __restrict__" in the
131 previous line. Perhaps some future version of Sun C++ will work with
132 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
133#if defined __SUNPRO_CC && !defined __RESTRICT
134# define _Restrict
135# define __restrict__
136#endif