You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
2.9KB

  1. /* Set to 1 if the compile is GNU GCC. */
  2. #define COMPILER_IS_GCC 0
  3. /* Target processor clips on negative float to int conversion. */
  4. #define CPU_CLIPS_NEGATIVE 0
  5. /* Target processor clips on positive float to int conversion. */
  6. #define CPU_CLIPS_POSITIVE 0
  7. /* Target processor is big endian. */
  8. #define CPU_IS_BIG_ENDIAN 0
  9. /* Target processor is little endian. */
  10. #define CPU_IS_LITTLE_ENDIAN 1
  11. /* Define to 1 if you have the `calloc' function. */
  12. #define HAVE_CALLOC 1
  13. /* Define to 1 if you have the `ceil' function. */
  14. #define HAVE_CEIL 1
  15. /* Define to 1 if you have the `floor' function. */
  16. #define HAVE_FLOOR 1
  17. /* Define to 1 if you have the `fmod' function. */
  18. #define HAVE_FMOD 1
  19. /* Define to 1 if you have the `free' function. */
  20. #define HAVE_FREE 1
  21. /* Define to 1 if you have the <inttypes.h> header file. */
  22. #define HAVE_INTTYPES_H 1
  23. /* Define to 1 if you have the `m' library (-lm). */
  24. #define HAVE_LIBM 1
  25. /* Define if you have C99's lrint function. */
  26. #define HAVE_LRINT 1
  27. /* Define if you have C99's lrintf function. */
  28. #define HAVE_LRINTF 1
  29. /* Define to 1 if you have the `malloc' function. */
  30. #define HAVE_MALLOC 1
  31. /* Define to 1 if you have the `memcpy' function. */
  32. #define HAVE_MEMCPY 1
  33. /* Define to 1 if you have the `memmove' function. */
  34. #define HAVE_MEMMOVE 1
  35. /* Define to 1 if you have the <memory.h> header file. */
  36. #define HAVE_MEMORY_H 1
  37. /* Set to 1 if you have libsndfile. */
  38. #define HAVE_SNDFILE 1
  39. /* Define to 1 if you have the <stdint.h> header file. */
  40. #define HAVE_STDINT_H 1
  41. /* Define to 1 if you have the <stdlib.h> header file. */
  42. #define HAVE_STDLIB_H 1
  43. /* Define to 1 if you have the <strings.h> header file. */
  44. #define HAVE_STRINGS_H 1
  45. /* Define to 1 if you have the <string.h> header file. */
  46. #define HAVE_STRING_H 1
  47. /* Define to the sub-directory where libtool stores uninstalled libraries. */
  48. #define LT_OBJDIR ".libs/"
  49. /* Name of package */
  50. #define PACKAGE "libsamplerate"
  51. /* Define to the address where bug reports for this package should be sent. */
  52. #define PACKAGE_BUGREPORT "erikd@mega-nerd.com"
  53. /* Define to the full name of this package. */
  54. #define PACKAGE_NAME "libsamplerate"
  55. /* Define to the full name and version of this package. */
  56. #define PACKAGE_STRING "libsamplerate 0.1.9"
  57. /* Define to the one symbol short name of this package. */
  58. #define PACKAGE_TARNAME "libsamplerate"
  59. /* Define to the home page for this package. */
  60. #define PACKAGE_URL "http://www.mega-nerd.com/libsamplerate/"
  61. /* Define to the version of this package. */
  62. #define PACKAGE_VERSION "0.1.9"
  63. /* The size of `double', as computed by sizeof. */
  64. #define SIZEOF_DOUBLE 8
  65. /* The size of `float', as computed by sizeof. */
  66. #define SIZEOF_FLOAT 4
  67. /* The size of `int', as computed by sizeof. */
  68. #define SIZEOF_INT 4
  69. /* The size of `long', as computed by sizeof. */
  70. #define SIZEOF_LONG 8
  71. /* Define to 1 if you have the ANSI C header files. */
  72. #define STDC_HEADERS 1
  73. /* Version number of package */
  74. #define VERSION "0.1.9"