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