| OLD | NEW |
| 1 /* config.h.in. Generated from configure.ac by autoheader. */ | 1 /* config.h.in. Generated from configure.ac by autoheader. */ |
| 2 | 2 |
| 3 /* Define if building universal (internal helper macro) */ | |
| 4 #undef AC_APPLE_UNIVERSAL_BUILD | |
| 5 | |
| 6 /* Custom modes */ | 3 /* Custom modes */ |
| 7 #undef CUSTOM_MODES | 4 #undef CUSTOM_MODES |
| 8 | 5 |
| 9 /* Assertions */ | 6 /* Assertions */ |
| 10 #undef ENABLE_ASSERTIONS | 7 #undef ENABLE_ASSERTIONS |
| 11 | 8 |
| 12 /* Debug fixed-point implementation */ | 9 /* Debug fixed-point implementation */ |
| 13 #undef FIXED_DEBUG | 10 #undef FIXED_DEBUG |
| 14 | 11 |
| 15 /* Compile as fixed-point (for machines without a fast enough FPU) */ | 12 /* Compile as fixed-point (for machines without a fast enough FPU) */ |
| 16 #undef FIXED_POINT | 13 #undef FIXED_POINT |
| 17 | 14 |
| 18 /* Compile as floating-point (for machines with a fast enough FPU) */ | |
| 19 #undef FLOATING_POINT | |
| 20 | |
| 21 /* Float approximations */ | 15 /* Float approximations */ |
| 22 #undef FLOAT_APPROX | 16 #undef FLOAT_APPROX |
| 23 | 17 |
| 24 /* Fuzzing */ | 18 /* Fuzzing */ |
| 25 #undef FUZZING | 19 #undef FUZZING |
| 26 | 20 |
| 27 /* Define to 1 if you have the <alloca.h> header file. */ | 21 /* Define to 1 if you have the <alloca.h> header file. */ |
| 28 #undef HAVE_ALLOCA_H | 22 #undef HAVE_ALLOCA_H |
| 29 | 23 |
| 30 /* Define to 1 if you have the <dlfcn.h> header file. */ | 24 /* Define to 1 if you have the <dlfcn.h> header file. */ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 108 |
| 115 /* Define to 1 if you have the ANSI C header files. */ | 109 /* Define to 1 if you have the ANSI C header files. */ |
| 116 #undef STDC_HEADERS | 110 #undef STDC_HEADERS |
| 117 | 111 |
| 118 /* Make use of alloca */ | 112 /* Make use of alloca */ |
| 119 #undef USE_ALLOCA | 113 #undef USE_ALLOCA |
| 120 | 114 |
| 121 /* Use C99 variable-size arrays */ | 115 /* Use C99 variable-size arrays */ |
| 122 #undef VAR_ARRAYS | 116 #undef VAR_ARRAYS |
| 123 | 117 |
| 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. */ | 118 /* Define to empty if `const' does not conform to ANSI C. */ |
| 137 #undef const | 119 #undef const |
| 138 | 120 |
| 139 /* Define to `__inline__' or `__inline' if that's what the C compiler | 121 /* 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. */ | 122 calls it, or to nothing if 'inline' is not supported under any name. */ |
| 141 #ifndef __cplusplus | 123 #ifndef __cplusplus |
| 142 #undef inline | 124 #undef inline |
| 143 #endif | 125 #endif |
| 144 | 126 |
| 145 /* Define to the equivalent of the C99 'restrict' keyword, or to | 127 /* Define to the equivalent of the C99 'restrict' keyword, or to |
| 146 nothing if this is not supported. Do not define if restrict is | 128 nothing if this is not supported. Do not define if restrict is |
| 147 supported directly. */ | 129 supported directly. */ |
| 148 #undef restrict | 130 #undef restrict |
| 149 /* Work around a bug in Sun C++: it does not support _Restrict or | 131 /* 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 | 132 __restrict__, even though the corresponding Sun C compiler ends up with |
| 151 "#define restrict _Restrict" or "#define restrict __restrict__" in the | 133 "#define restrict _Restrict" or "#define restrict __restrict__" in the |
| 152 previous line. Perhaps some future version of Sun C++ will work with | 134 previous line. Perhaps some future version of Sun C++ will work with |
| 153 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ | 135 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ |
| 154 #if defined __SUNPRO_CC && !defined __RESTRICT | 136 #if defined __SUNPRO_CC && !defined __RESTRICT |
| 155 # define _Restrict | 137 # define _Restrict |
| 156 # define __restrict__ | 138 # define __restrict__ |
| 157 #endif | 139 #endif |
| OLD | NEW |