libmad_config.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /* config.h. Generated by configure. */
  2. /* config.h.in. Generated from configure.ac by autoheader. */
  3. /* Define to enable diagnostic debugging support. */
  4. /* #undef DEBUG */
  5. /* Define to enable experimental code. */
  6. /* #undef EXPERIMENTAL */
  7. /* Define to 1 if you have the <assert.h> header file. */
  8. #define HAVE_ASSERT_H 1
  9. /* Define to 1 if you have the <dlfcn.h> header file. */
  10. /* #undef HAVE_DLFCN_H */
  11. /* Define to 1 if you have the <errno.h> header file. */
  12. #define HAVE_ERRNO_H 1
  13. /* Define to 1 if you have the `fcntl' function. */
  14. /* #undef HAVE_FCNTL */
  15. /* Define to 1 if you have the <fcntl.h> header file. */
  16. #define HAVE_FCNTL_H 1
  17. /* Define to 1 if you have the `fork' function. */
  18. /* #undef HAVE_FORK */
  19. /* Define to 1 if you have the <inttypes.h> header file. */
  20. /*#define HAVE_INTTYPES_H 1*/
  21. /* Define to 1 if you have the <limits.h> header file. */
  22. #define HAVE_LIMITS_H 1
  23. /* Define if your MIPS CPU supports a 2-operand MADD16 instruction. */
  24. /* #undef HAVE_MADD16_ASM */
  25. /* Define if your MIPS CPU supports a 2-operand MADD instruction. */
  26. /* #undef HAVE_MADD_ASM */
  27. /* Define to 1 if you have the <memory.h> header file. */
  28. #define HAVE_MEMORY_H 1
  29. /* Define to 1 if you have the `pipe' function. */
  30. /* #undef HAVE_PIPE */
  31. /* Define to 1 if you have the <stdint.h> header file. */
  32. #define HAVE_STDINT_H 1
  33. /* Define to 1 if you have the <stdlib.h> header file. */
  34. #define HAVE_STDLIB_H 1
  35. /* Define to 1 if you have the <strings.h> header file. */
  36. /*#define HAVE_STRINGS_H 1*/
  37. /* Define to 1 if you have the <string.h> header file. */
  38. #define HAVE_STRING_H 1
  39. /* Define to 1 if you have the <sys/stat.h> header file. */
  40. #define HAVE_SYS_STAT_H 1
  41. /* Define to 1 if you have the <sys/types.h> header file. */
  42. #define HAVE_SYS_TYPES_H 1
  43. /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
  44. /* #undef HAVE_SYS_WAIT_H */
  45. /* Define to 1 if you have the <unistd.h> header file. */
  46. /* #undef HAVE_UNISTD_H */
  47. /* Define to 1 if you have the `waitpid' function. */
  48. /* #undef HAVE_WAITPID */
  49. /* Define to disable debugging assertions. */
  50. /* #undef NDEBUG */
  51. /* Define to optimize for accuracy over speed. */
  52. /* #undef OPT_ACCURACY */
  53. /* Define to optimize for speed over accuracy. */
  54. /* #undef OPT_SPEED */
  55. /* Define to enable a fast subband synthesis approximation optimization. */
  56. /* #undef OPT_SSO */
  57. /* Define to influence a strict interpretation of the ISO/IEC standards, even
  58. if this is in opposition with best accepted practices. */
  59. /* #undef OPT_STRICT */
  60. /* Name of package */
  61. #define PACKAGE "libmad"
  62. /* Define to the address where bug reports for this package should be sent. */
  63. #define PACKAGE_BUGREPORT "support@underbit.com"
  64. /* Define to the full name of this package. */
  65. #define PACKAGE_NAME "MPEG Audio Decoder"
  66. /* Define to the full name and version of this package. */
  67. #define PACKAGE_STRING "MPEG Audio Decoder 0.15.1b"
  68. /* Define to the one symbol short name of this package. */
  69. #define PACKAGE_TARNAME "libmad"
  70. /* Define to the version of this package. */
  71. #define PACKAGE_VERSION "0.15.1b"
  72. /* The size of a `int', as computed by sizeof. */
  73. #define SIZEOF_INT 4
  74. /* The size of a `long', as computed by sizeof. */
  75. #define SIZEOF_LONG 4
  76. /* The size of a `long long', as computed by sizeof. */
  77. #define SIZEOF_LONG_LONG 8
  78. /* Define to 1 if you have the ANSI C header files. */
  79. #define STDC_HEADERS 1
  80. /* Version number of package */
  81. #define VERSION "0.15.1b"
  82. /* Define to empty if `const' does not conform to ANSI C. */
  83. /* #undef const */
  84. /* Define as `__inline' if that's what the C compiler calls it, or to nothing
  85. if it is not supported. */
  86. #define inline __inline
  87. /* Define to `int' if <sys/types.h> does not define. */
  88. /* #undef pid_t */
  89. #if defined(_M_IX86) || defined(__i386__) || defined(__x86_64__)
  90. # define FPM_INTEL 1
  91. #elif defined(_M_X64)
  92. # define FPM_64BIT 1
  93. #elif defined(__arm__)
  94. # define FPM_DEFAULT 1
  95. #elif defined(__mips__)
  96. # define FPM_MIPS 1
  97. #elif defined(__sparc__)
  98. # define FPM_SPARC 1
  99. #elif defined(__ppc__)
  100. # define FPM_PPC 1
  101. #else
  102. # define FPM_DEFAULT 1
  103. #endif
  104. #if defined(_MSC_VER)
  105. # pragma warning(disable: 4018)
  106. # pragma warning(disable: 4146)
  107. # pragma warning(disable: 4244)
  108. # ifndef _CRT_SECURE_NO_WARNINGS
  109. # define _CRT_SECURE_NO_WARNINGS
  110. # endif
  111. #endif