1 /* 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 /* Opus library version string */ 77 #undef OPUS_VERSION 78 79 /* Define to the address where bug reports for this package should be sent. */ 80 #undef PACKAGE_BUGREPORT 81 82 /* Define to the full name of this package. */ 83 #undef PACKAGE_NAME 84 85 /* Define to the full name and version of this package. */ 86 #undef PACKAGE_STRING 87 88 /* Define to the one symbol short name of this package. */ 89 #undef PACKAGE_TARNAME 90 91 /* Define to the home page for this package. */ 92 #undef PACKAGE_URL 93 94 /* Define to the version of this package. */ 95 #undef PACKAGE_VERSION 96 97 /* The size of `int', as computed by sizeof. */ 98 #undef SIZEOF_INT 99 100 /* The size of `long', as computed by sizeof. */ 101 #undef SIZEOF_LONG 102 103 /* The size of `long long', as computed by sizeof. */ 104 #undef SIZEOF_LONG_LONG 105 106 /* The size of `short', as computed by sizeof. */ 107 #undef SIZEOF_SHORT 108 109 /* Define to 1 if you have the ANSI C header files. */ 110 #undef STDC_HEADERS 111 112 /* Make use of alloca */ 113 #undef USE_ALLOCA 114 115 /* Use C99 variable-size arrays */ 116 #undef VAR_ARRAYS 117 118 /* Define to empty if `const' does not conform to ANSI C. */ 119 #undef const 120 121 /* Define to `__inline__' or `__inline' if that's what the C compiler 122 calls it, or to nothing if 'inline' is not supported under any name. */ 123 #ifndef __cplusplus 124 #undef inline 125 #endif 126 127 /* Define to the equivalent of the C99 'restrict' keyword, or to 128 nothing if this is not supported. Do not define if restrict is 129 supported directly. */ 130 #undef restrict 131 /* Work around a bug in Sun C++: it does not support _Restrict or 132 __restrict__, even though the corresponding Sun C compiler ends up with 133 "#define restrict _Restrict" or "#define restrict __restrict__" in the 134 previous line. Perhaps some future version of Sun C++ will work with 135 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ 136 #if defined __SUNPRO_CC && !defined __RESTRICT 137 # define _Restrict 138 # define __restrict__ 139 #endif 140