1 /* config.h. */
2 /* Edited by Erez Volk for Praat. */
3 /* Luckily we assume C99, which makes life easier. */
4 
5 /* Compile with Intel implementation for Win32, otherwise 64-bit */
6 #if defined (_WIN32) && defined (_MSC_VER) || defined (__GNUC__) && defined (__i386__) && ! defined (macintosh)
7 #  define FPM_INTEL
8 #else /* !_WIN32 */
9 #  define FPM_64BIT
10 #endif /* _WIN32 */
11 
12 /* Define to enable diagnostic debugging support. */
13 /* #undef DEBUG */
14 
15 /* Define to enable experimental code. */
16 /* #undef EXPERIMENTAL */
17 
18 /* Define to 1 if you have the <assert.h> header file. */
19 #define HAVE_ASSERT_H 1
20 
21 /* Define to 1 if you have the <dlfcn.h> header file. */
22 /* #undef HAVE_DLFCN_H */
23 
24 /* Define to 1 if you have the <errno.h> header file. */
25 /* #undef HAVE_ERRNO_H */
26 
27 /* Define to 1 if you have the `fcntl' function. */
28 /* #undef HAVE_FCNTL */
29 
30 /* Define to 1 if you have the <fcntl.h> header file. */
31 /* #undef HAVE_FCNTL_H */
32 
33 /* Define to 1 if you have the `fork' function. */
34 /* #undef HAVE_FORK */
35 
36 /* Define to 1 if you have the <inttypes.h> header file. */
37 #define HAVE_INTTYPES_H 1
38 
39 /* Define to 1 if you have the <limits.h> header file. */
40 #define HAVE_LIMITS_H 1
41 
42 /* Define if your MIPS CPU supports a 2-operand MADD16 instruction. */
43 /* #undef HAVE_MADD16_ASM */
44 
45 /* Define if your MIPS CPU supports a 2-operand MADD instruction. */
46 /* #undef HAVE_MADD_ASM */
47 
48 /* Define to 1 if you have the <memory.h> header file. */
49 #define HAVE_MEMORY_H 1
50 
51 /* Define to 1 if you have the `pipe' function. */
52 /* #undef HAVE_PIPE */
53 
54 /* Define to 1 if you have the <stdint.h> header file. */
55 #define HAVE_STDINT_H 1
56 
57 /* Define to 1 if you have the <stdlib.h> header file. */
58 #define HAVE_STDLIB_H 1
59 
60 /* Define to 1 if you have the <strings.h> header file. */
61 #define HAVE_STRINGS_H 1
62 
63 /* Define to 1 if you have the <string.h> header file. */
64 #define HAVE_STRING_H 1
65 
66 /* Define to 1 if you have the <sys/stat.h> header file. */
67 #define HAVE_SYS_STAT_H 1
68 
69 /* Define to 1 if you have the <sys/types.h> header file. */
70 #define HAVE_SYS_TYPES_H 1
71 
72 /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
73 /* #undef HAVE_SYS_WAIT_H */
74 
75 /* Define to 1 if you have the <unistd.h> header file. */
76 /* #undef HAVE_UNISTD_H */
77 
78 /* Define to 1 if you have the `waitpid' function. */
79 /* #undef HAVE_WAITPID */
80 
81 /* Define to disable debugging assertions. */
82 /* #undef NDEBUG */
83 
84 /* Define to optimize for accuracy over speed. */
85 /* #undef OPT_ACCURACY */
86 
87 /* Define to optimize for speed over accuracy. */
88 /* #undef OPT_SPEED */
89 
90 /* Define to enable a fast subband synthesis approximation optimization. */
91 /* #undef OPT_SSO */
92 
93 /* Define to influence a strict interpretation of the ISO/IEC standards, even
94    if this is in opposition with best accepted practices. */
95 /* #undef OPT_STRICT */
96 
97 /* Name of package */
98 #define PACKAGE "libmad"
99 
100 /* Define to the address where bug reports for this package should be sent. */
101 #define PACKAGE_BUGREPORT "support@underbit.com"
102 
103 /* Define to the full name of this package. */
104 #define PACKAGE_NAME "MPEG Audio Decoder"
105 
106 /* Define to the full name and version of this package. */
107 #define PACKAGE_STRING "MPEG Audio Decoder 0.15.1b"
108 
109 /* Define to the one symbol short name of this package. */
110 #define PACKAGE_TARNAME "libmad"
111 
112 /* Define to the version of this package. */
113 #define PACKAGE_VERSION "0.15.1b"
114 
115 /* Erez Volk: Let's hope these sizes are correct. */
116 /*            I've added a runtime test for them just in case. */
117 /* The size of a `int', as computed by sizeof. */
118 #define SIZEOF_INT 4
119 
120 /* The size of a `long', as computed by sizeof. */
121 #define SIZEOF_LONG 4
122 
123 /* The size of a `long long', as computed by sizeof. */
124 #define SIZEOF_LONG_LONG 8
125 
126 /* Define to 1 if you have the ANSI C header files. */
127 #define STDC_HEADERS 1
128 
129 /* Version number of package */
130 #define VERSION "0.15.1b"
131 
132 /* Define to empty if `const' does not conform to ANSI C. */
133 /* #undef const */
134 
135 /* Define as `__inline' if that's what the C compiler calls it, or to nothing
136    if it is not supported. */
137 #ifdef _MSC_VER
138 #  define inline __inline
139 #endif /* _MSC_VER */
140 
141 /* Define to `int' if <sys/types.h> does not define. */
142 /* #undef pid_t */
143