config.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* config.h. Generated from config.h.in by configure. */
  2. /* config.h.in. Generated from configure.ac by autoheader. */
  3. /* Define to dummy `main' function (if any) required to link to the Fortran
  4. libraries. */
  5. /* #undef FC_DUMMY_MAIN */
  6. /* Define if F77 and FC dummy `main' functions are identical. */
  7. /* #undef FC_DUMMY_MAIN_EQ_F77 */
  8. /* Define to a macro mangling the given C identifier (in lower and upper
  9. case), which must not contain underscores, for linking with Fortran. */
  10. #define FC_FUNC(name,NAME) name ## _
  11. /* As FC_FUNC, but for C identifiers containing underscores. */
  12. #define FC_FUNC_(name,NAME) name ## _
  13. /* Define to alternate name for `main' routine that is called from a `main' in
  14. the Fortran libraries. */
  15. #define FC_MAIN main
  16. /* Define to 1 if your system has the clock_gettime function. */
  17. #define HAVE_CLOCK_GETTIME 1
  18. /* Define to 1 if you have the <dlfcn.h> header file. */
  19. #define HAVE_DLFCN_H 1
  20. /* Define to 1 if Fortran interface is to be compiled. */
  21. #define HAVE_FORTRAN 1
  22. /* Define to 1 if you have the <fpu_control.h> header file. */
  23. #define HAVE_FPU_CONTROL_H 1
  24. /* Define to 1 if you have the `gettimeofday' function. */
  25. #define HAVE_GETTIMEOFDAY 1
  26. /* Define to 1 if you have the <ieeefp.h> header file. */
  27. /* #undef HAVE_IEEEFP_H */
  28. /* Define to 1 if you have the <inttypes.h> header file. */
  29. #define HAVE_INTTYPES_H 1
  30. /* Define to 1 if you have the `m' library (-lm). */
  31. #define HAVE_LIBM 1
  32. /* Define to 1 if you have the <memory.h> header file. */
  33. #define HAVE_MEMORY_H 1
  34. /* Define to 1 if stdbool.h conforms to C99. */
  35. /* #undef HAVE_STDBOOL_H */
  36. /* Define to 1 if you have the <stdint.h> header file. */
  37. #define HAVE_STDINT_H 1
  38. /* Define to 1 if you have the <stdlib.h> header file. */
  39. #define HAVE_STDLIB_H 1
  40. /* Define to 1 if you have the <strings.h> header file. */
  41. #define HAVE_STRINGS_H 1
  42. /* Define to 1 if you have the <string.h> header file. */
  43. #define HAVE_STRING_H 1
  44. /* Define to 1 if you have the <sys/stat.h> header file. */
  45. #define HAVE_SYS_STAT_H 1
  46. /* Define to 1 if you have the <sys/types.h> header file. */
  47. #define HAVE_SYS_TYPES_H 1
  48. /* Define to 1 if you have the <unistd.h> header file. */
  49. #define HAVE_UNISTD_H 1
  50. /* Define to 1 if the system has the type `_Bool'. */
  51. /* #undef HAVE__BOOL */
  52. /* Define to the sub-directory in which libtool stores uninstalled libraries.
  53. */
  54. #define LT_OBJDIR ".libs/"
  55. /* qd major version number */
  56. #define MAJOR_VERSION 2
  57. /* qd minor version number */
  58. #define MINOR_VERSION 3
  59. /* Name of package */
  60. #define PACKAGE "qd"
  61. /* Define to the address where bug reports for this package should be sent. */
  62. #define PACKAGE_BUGREPORT "yozo@cs.berkeley.edu"
  63. /* Define to the full name of this package. */
  64. #define PACKAGE_NAME "qd"
  65. /* Define to the full name and version of this package. */
  66. #define PACKAGE_STRING "qd 2.3.20"
  67. /* Define to the one symbol short name of this package. */
  68. #define PACKAGE_TARNAME "qd"
  69. /* Define to the home page for this package. */
  70. #define PACKAGE_URL ""
  71. /* Define to the version of this package. */
  72. #define PACKAGE_VERSION "2.3.20"
  73. /* qd patch number (sub minor version) */
  74. #define PATCH_VERSION 12
  75. /* Any special symbols needed for exporting APIs. */
  76. #define QD_API /**/
  77. /* Define this macro to be the copysign(x, y) function. */
  78. #define QD_COPYSIGN(x, y) std::copysign(x, y)
  79. /* Define to 1 to enable debugging code. */
  80. /* #undef QD_DEBUG */
  81. /* If fused multiply-add is available, define correct macro for using it. */
  82. /* #undef QD_FMA */
  83. /* If fused multiply-subtract is available, define correct macro for using it.
  84. */
  85. /* #undef QD_FMS */
  86. /* Define to 1 if your compiler have the C++ standard include files. */
  87. #define QD_HAVE_STD 1
  88. /* Define to 1 to use additions with IEEE-style error bounds. */
  89. /* #undef QD_IEEE_ADD */
  90. /* Define to 1 to inline commonly used functions. */
  91. #define QD_INLINE 1
  92. /* Define this macro to be the isfinite(x) function. */
  93. #define QD_ISFINITE(x) std::isfinite(x)
  94. /* Define this macro to be the isinf(x) function. */
  95. #define QD_ISINF(x) std::isinf(x)
  96. /* Define this macro to be the isnan(x) function. */
  97. #define QD_ISNAN(x) std::isnan(x)
  98. /* Define to 1 to use sloppy division (which is faster by slightly
  99. inaccurate). */
  100. #define QD_SLOPPY_DIV 1
  101. /* Define to 1 to use sloppy multiplication (which is faster by slightly
  102. inaccurate). */
  103. #define QD_SLOPPY_MUL 1
  104. /* Set to 1 if using VisualAge C++ compiler for __fmadd builtin. */
  105. /* #undef QD_VACPP_BUILTINS_H */
  106. /* Define to 1 if you have the ANSI C header files. */
  107. #define STDC_HEADERS 1
  108. /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
  109. #define TIME_WITH_SYS_TIME 1
  110. /* Define to 1 if your <sys/time.h> declares `struct tm'. */
  111. /* #undef TM_IN_SYS_TIME */
  112. /* Version number of package */
  113. #define VERSION "2.3.20"
  114. /* Whether to use x86 fpu fix. */
  115. #define X86 1