config.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* bnconfig.h. Generated automatically by configure. */
  2. /*
  3. * bnconfig.h -- Configuration file for BigNum library.
  4. *
  5. * This file is automatically filled in by configure.
  6. * Everything must start out turned *off*, because configure
  7. * (or, more properly, config.status) only knows how to turn them
  8. * *on*.
  9. */
  10. #ifndef CONFIG_H
  11. #define CONFIG_H
  12. /* Define to empty if the compiler does not support 'const' variables. */
  13. /* #undef const */
  14. /* Define to `unsigned' if <sys/types.h> doesn't define it. */
  15. /* #undef size_t */
  16. /* Checks for the presence and absence of various header files */
  17. #define HAVE_ASSERT_H 1
  18. #define NO_ASSERT_H !HAVE_ASSERT_H
  19. #define HAVE_LIMITS_H 1
  20. #define NO_LIMITS_H !HAVE_LIMITS_H
  21. #define HAVE_STDLIB_H 1
  22. #define NO_STDLIB_H !HAVE_STDLIB_H
  23. #define HAVE_STRING_H 1
  24. #define NO_STRING_H !HAVE_STRING_H
  25. #define HAVE_STRINGS_H 0
  26. /* We go to some trouble to find accurate times... */
  27. /* Define if you have Posix.4 glock_gettime() */
  28. #define HAVE_CLOCK_GETTIME 0
  29. /* Define if you have Solaris-style gethrvtime() */
  30. #define HAVE_GETHRVTIME 0
  31. /* Define if you have getrusage() */
  32. #define HAVE_GETRUSAGE 1
  33. /* Define if you have clock() */
  34. #define HAVE_CLOCK 1
  35. /* Define if you have time() */
  36. #define HAVE_TIME 1
  37. /*
  38. * Define as 0 if #including <sys/time.h> automatically
  39. * #includes <time.h>, and doing so explicitly causes an
  40. * error.
  41. */
  42. #define TIME_WITH_SYS_TIME 1
  43. /* Defines for various kinds of library brokenness */
  44. /* If not available, bcopy() is substituted */
  45. #define HAVE_MEMMOVE 1
  46. #define NO_MEMMOVE !HAVE_MEMMOVE
  47. #define HAVE_MEMCPY 1
  48. #define NO_MEMCPY !HAVE_MEMCPY
  49. #endif /* CONFIG_H */