summaryrefslogtreecommitdiffstats
path: root/uisimulator/common/libmad/madconfig.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2002-05-12 11:23:25 +0000
committerDave Chapman <dave@dchapman.com>2002-05-12 11:23:25 +0000
commit43bc6e62e410adfe4238012becca7a0522cf9435 (patch)
tree0b626b9035eeb635274b7ffd15dcb508228f6e5a /uisimulator/common/libmad/madconfig.h
parentd2d5ac3e46af867166cdb98f1370b43e11c999b4 (diff)
downloadrockbox-43bc6e62e410adfe4238012becca7a0522cf9435.tar.gz
rockbox-43bc6e62e410adfe4238012becca7a0522cf9435.zip
libmad version 0.14.2b
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@550 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common/libmad/madconfig.h')
-rw-r--r--uisimulator/common/libmad/madconfig.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/uisimulator/common/libmad/madconfig.h b/uisimulator/common/libmad/madconfig.h
new file mode 100644
index 0000000000..7cd8e1aa1c
--- /dev/null
+++ b/uisimulator/common/libmad/madconfig.h
@@ -0,0 +1,121 @@
+/*
+ * libmad - MPEG audio decoder library
+ * Copyright (C) 2000-2001 Robert Leslie
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
+ */
+
+# ifndef LIBMAD_CONFIG_H
+# define LIBMAD_CONFIG_H
+
+/*****************************************************************************
+ * Definitions selected automatically by `configure' *
+ *****************************************************************************/
+
+/* Define to empty if the keyword does not work. */
+/* #undef const */
+
+/* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
+/* #undef HAVE_SYS_WAIT_H */
+
+/* Define as __inline if that's what the C compiler calls it. */
+#define inline __inline
+
+/* Define to `int' if <sys/types.h> doesn't define. */
+/* #undef pid_t */
+
+/* Define if you have the ANSI C header files. */
+#define STDC_HEADERS 1
+
+/* Define to optimize for speed over accuracy. */
+/* #undef OPT_SPEED */
+
+/* Define to optimize for accuracy over speed. */
+/* #undef OPT_ACCURACY */
+
+/* Define to enable a fast subband synthesis approximation optimization. */
+/* #undef OPT_SSO */
+
+/* Define to influence a strict interpretation of the ISO/IEC standards,
+ even if this is in opposition with best accepted practices. */
+/* #undef OPT_STRICT */
+
+/* Define if your MIPS CPU supports a 2-operand MADD instruction. */
+/* #undef HAVE_MADD_ASM */
+
+/* Define if your MIPS CPU supports a 2-operand MADD16 instruction. */
+/* #undef HAVE_MADD16_ASM */
+
+/* Define to enable diagnostic debugging support. */
+/* #undef DEBUG */
+
+/* Define to disable debugging assertions. */
+/* #undef NDEBUG */
+
+/* Define to enable experimental code. */
+/* #undef EXPERIMENTAL */
+
+/* The number of bytes in a int. */
+#define SIZEOF_INT 4
+
+/* The number of bytes in a long. */
+#define SIZEOF_LONG 4
+
+/* The number of bytes in a long long. */
+#define SIZEOF_LONG_LONG 8
+
+/* Define if you have the fcntl function. */
+/* #undef HAVE_FCNTL */
+
+/* Define if you have the fork function. */
+/* #undef HAVE_FORK */
+
+/* Define if you have the pipe function. */
+/* #undef HAVE_PIPE */
+
+/* Define if you have the waitpid function. */
+/* #undef HAVE_WAITPID */
+
+/* Define if you have the <assert.h> header file. */
+#define HAVE_ASSERT_H 1
+
+/* Define if you have the <errno.h> header file. */
+#define HAVE_ERRNO_H 1
+
+/* Define if you have the <fcntl.h> header file. */
+#define HAVE_FCNTL_H 1
+
+/* Define if you have the <limits.h> header file. */
+#define HAVE_LIMITS_H 1
+
+/* Define if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
+/* Define if you have the <unistd.h> header file. */
+/* #undef HAVE_UNISTD_H */
+
+/* Name of package */
+#define PACKAGE "libmad"
+
+/* Version number of package */
+#define VERSION "0.14.2b"
+
+/*****************************************************************************
+ * End of automatically configured definitions *
+ *****************************************************************************/
+
+# endif