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