config.h.in 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /* Suppress spurious compiler warnings */
  2. #ifdef _MSC_VER
  3. #pragma warning (disable: 4098 4244 4305 4761)
  4. #endif
  5. /* a52dec profiling */
  6. // ${define A52DEC_GPROF}
  7. /* maximum supported data alignment */
  8. // ${define ATTRIBUTE_ALIGNED_MAX}
  9. /* debug mode configuration */
  10. // ${define DEBUG}
  11. /* Define if you have the `__builtin_expect' function. */
  12. ${define HAVE_BUILTIN_EXPECT}
  13. /* Define to 1 if you have the <dlfcn.h> header file. */
  14. // ${define HAVE_DLFCN_H}
  15. /* Define to 1 if you have the `ftime' function. */
  16. ${define HAVE_FTIME}
  17. /* Define to 1 if you have the `gettimeofday' function. */
  18. ${define HAVE_GETTIMEOFDAY}
  19. /* Define to 1 if you have the <inttypes.h> header file. */
  20. ${define HAVE_INTTYPES_H}
  21. /* Define to 1 if you have the <io.h> header file. */
  22. ${define HAVE_IO_H}
  23. /* Define to 1 if you have the `memalign' function. */
  24. ${define HAVE_MEMALIGN}
  25. /* Define to 1 if you have the <memory.h> header file. */
  26. // ${define HAVE_MEMORY_H}
  27. /* Define to 1 if you have the <stdint.h> header file. */
  28. // ${define HAVE_STDINT_H}
  29. /* Define to 1 if you have the <stdlib.h> header file. */
  30. // ${define HAVE_STDLIB_H}
  31. /* Define to 1 if you have the <strings.h> header file. */
  32. // ${define HAVE_STRINGS_H}
  33. /* Define to 1 if you have the <string.h> header file. */
  34. ${define HAVE_STRING_H}
  35. /* Define to 1 if the system has the type `struct timeval'. */
  36. // ${define HAVE_STRUCT_TIMEVAL}
  37. /* Define to 1 if you have the <sys/stat.h> header file. */
  38. // ${define HAVE_SYS_STAT_H}
  39. /* Define to 1 if you have the <sys/timeb.h> header file. */
  40. ${define HAVE_SYS_TIMEB_H}
  41. /* Define to 1 if you have the <sys/time.h> header file. */
  42. ${define HAVE_SYS_TIME_H}
  43. /* Define to 1 if you have the <sys/types.h> header file. */
  44. // ${define HAVE_SYS_TYPES_H}
  45. /* Define to 1 if you have the <time.h> header file. */
  46. ${define HAVE_TIME_H}
  47. /* Define to 1 if you have the <unistd.h> header file. */
  48. // ${define HAVE_UNISTD_H}
  49. /* liba52 djbfft support */
  50. ${define LIBA52_DJBFFT}
  51. /* a52 sample precision */
  52. // ${define LIBA52_DOUBLE}
  53. /* use fixed-point arithmetic */
  54. // ${define LIBA52_FIXED}
  55. /* libao al support */
  56. // ${define LIBAO_AL}
  57. /* libao OSS support */
  58. ${define LIBAO_OSS}
  59. /* libao solaris support */
  60. // ${define LIBAO_SOLARIS}
  61. /* libao win support */
  62. ${define LIBAO_WIN}
  63. /* Name of package */
  64. #define PACKAGE "a52dec"
  65. /* Define to the address where bug reports for this package should be sent. */
  66. // #define PACKAGE_BUGREPORT ""
  67. /* Define to the full name of this package. */
  68. // #define PACKAGE_NAME ""
  69. /* Define to the full name and version of this package. */
  70. // #define PACKAGE_STRING ""
  71. /* Define to the one symbol short name of this package. */
  72. // #define PACKAGE_TARNAME ""
  73. /* Define to the version of this package. */
  74. // #define PACKAGE_VERSION ""
  75. /* Define as the return type of signal handlers (`int' or `void'). */
  76. #define RETSIGTYPE void
  77. /* The size of a `char', as computed by sizeof. */
  78. // #define SIZEOF_CHAR 1
  79. /* The size of a `int', as computed by sizeof. */
  80. // #define SIZEOF_INT 4
  81. /* The size of a `long', as computed by sizeof. */
  82. // #define SIZEOF_LONG 4
  83. /* The size of a `short', as computed by sizeof. */
  84. // #define SIZEOF_SHORT 2
  85. /* The size of a `void*', as computed by sizeof. */
  86. // #define SIZEOF_VOIDP 4
  87. /* Define to 1 if you have the ANSI C header files. */
  88. // #define STDC_HEADERS 1
  89. /* Version number of package */
  90. #define VERSION "0.8.0"
  91. /* Define to 1 if your processor stores words with the most significant byte
  92. first (like Motorola and SPARC, unlike Intel and VAX). */
  93. /* #undef WORDS_BIGENDIAN */
  94. /* Define to empty if `const' does not conform to ANSI C. */
  95. /* #undef const */
  96. /* Define as `__inline' if that's what the C compiler calls it, or to nothing
  97. if it is not supported. */
  98. // #define inline __inline
  99. /* Define as `__restrict' if that's what the C compiler calls it, or to
  100. nothing if it is not supported. */
  101. // #define restrict __restrict
  102. /* Define to `unsigned' if <sys/types.h> does not define. */
  103. /* #undef size_t */