summaryrefslogtreecommitdiff
path: root/uisimulator/common/libmad/madconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common/libmad/madconfig.h')
-rw-r--r--uisimulator/common/libmad/madconfig.h121
1 files changed, 0 insertions, 121 deletions
diff --git a/uisimulator/common/libmad/madconfig.h b/uisimulator/common/libmad/madconfig.h
deleted file mode 100644
index 7cd8e1aa1c..0000000000
--- a/uisimulator/common/libmad/madconfig.h
+++ /dev/null
@@ -1,121 +0,0 @@
1/*
2 * libmad - MPEG audio decoder library
3 * Copyright (C) 2000-2001 Robert Leslie
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 * $Id$
20 */
21
22# ifndef LIBMAD_CONFIG_H
23# define LIBMAD_CONFIG_H
24
25/*****************************************************************************
26 * Definitions selected automatically by `configure' *
27 *****************************************************************************/
28
29/* Define to empty if the keyword does not work. */
30/* #undef const */
31
32/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
33/* #undef HAVE_SYS_WAIT_H */
34
35/* Define as __inline if that's what the C compiler calls it. */
36#define inline __inline
37
38/* Define to `int' if <sys/types.h> doesn't define. */
39/* #undef pid_t */
40
41/* Define if you have the ANSI C header files. */
42#define STDC_HEADERS 1
43
44/* Define to optimize for speed over accuracy. */
45/* #undef OPT_SPEED */
46
47/* Define to optimize for accuracy over speed. */
48/* #undef OPT_ACCURACY */
49
50/* Define to enable a fast subband synthesis approximation optimization. */
51/* #undef OPT_SSO */
52
53/* Define to influence a strict interpretation of the ISO/IEC standards,
54 even if this is in opposition with best accepted practices. */
55/* #undef OPT_STRICT */
56
57/* Define if your MIPS CPU supports a 2-operand MADD instruction. */
58/* #undef HAVE_MADD_ASM */
59
60/* Define if your MIPS CPU supports a 2-operand MADD16 instruction. */
61/* #undef HAVE_MADD16_ASM */
62
63/* Define to enable diagnostic debugging support. */
64/* #undef DEBUG */
65
66/* Define to disable debugging assertions. */
67/* #undef NDEBUG */
68
69/* Define to enable experimental code. */
70/* #undef EXPERIMENTAL */
71
72/* The number of bytes in a int. */
73#define SIZEOF_INT 4
74
75/* The number of bytes in a long. */
76#define SIZEOF_LONG 4
77
78/* The number of bytes in a long long. */
79#define SIZEOF_LONG_LONG 8
80
81/* Define if you have the fcntl function. */
82/* #undef HAVE_FCNTL */
83
84/* Define if you have the fork function. */
85/* #undef HAVE_FORK */
86
87/* Define if you have the pipe function. */
88/* #undef HAVE_PIPE */
89
90/* Define if you have the waitpid function. */
91/* #undef HAVE_WAITPID */
92
93/* Define if you have the <assert.h> header file. */
94#define HAVE_ASSERT_H 1
95
96/* Define if you have the <errno.h> header file. */
97#define HAVE_ERRNO_H 1
98
99/* Define if you have the <fcntl.h> header file. */
100#define HAVE_FCNTL_H 1
101
102/* Define if you have the <limits.h> header file. */
103#define HAVE_LIMITS_H 1
104
105/* Define if you have the <sys/types.h> header file. */
106#define HAVE_SYS_TYPES_H 1
107
108/* Define if you have the <unistd.h> header file. */
109/* #undef HAVE_UNISTD_H */
110
111/* Name of package */
112#define PACKAGE "libmad"
113
114/* Version number of package */
115#define VERSION "0.14.2b"
116
117/*****************************************************************************
118 * End of automatically configured definitions *
119 *****************************************************************************/
120
121# endif