bnconfig.hin 1.6 KB

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