config.hin
上传用户:zbbssh
上传日期:2007-01-08
资源大小:196k
文件大小:2k
源码类别:

CA认证

开发平台:

C/C++

  1. /*
  2.  * config.h -- Configuration file for BigNum library.
  3.  *
  4.  * This file is automatically filled in by configure.
  5.  * Everything must start out turned *off*, because configure
  6.  * (or, more properly, config.status) only knows how to turn them
  7.  * *on*.
  8.  */
  9. #ifndef CONFIG_H
  10. #define CONFIG_H
  11. /* Define to empty if the compiler does not support 'const' variables. */
  12. #undef const
  13. /* Define to `unsigned' if <sys/types.h> doesn't define it. */
  14. #undef size_t
  15. /* Checks for the presence and absence of various header files */
  16. #define HAVE_ASSERT_H 0
  17. #define NO_ASSERT_H !HAVE_ASSERT_H
  18. #define HAVE_LIMITS_H 0
  19. #define NO_LIMITS_H !HAVE_LIMITS_H
  20. #define HAVE_STDLIB_H 0
  21. #define NO_STDLIB_H !HAVE_STDLIB_H
  22. #define HAVE_STRING_H 0
  23. #define NO_STRING_H !HAVE_STRING_H
  24. #define HAVE_STRINGS_H 0
  25. #define NEED_MEMORY_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 0
  33. /* Define if you have clock() */
  34. #define HAVE_CLOCK 0
  35. /* Define if you have time() */
  36. #define HAVE_TIME 0
  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 0
  43. /* Defines for various kinds of library brokenness */
  44. /* Define if <stdio.h> is missing prototypes (= lots of warnings!) */
  45. #define NO_STDIO_PROTOS 0
  46. /* Define if <assert.h> depends on <stdio.h> and breaks without it */
  47. #define ASSERT_NEEDS_STDIO 0
  48. /* Define if <assert.h> depends on <stdlib.h> and complains without it */
  49. #define ASSERT_NEEDS_STDLIB 0
  50. /*
  51.  * Define if <string.h> delcares the mem* functions to take char *
  52.  * instead of void * parameters (= lots of warnings)
  53.  */
  54. #define MEM_PROTOS_BROKEN 0
  55. /* If not available, bcopy() is substituted */
  56. #define HAVE_MEMMOVE 0
  57. #define NO_MEMMOVE !HAVE_MEMMOVE
  58. #define HAVE_MEMCPY 0
  59. #define NO_MEMCPY !HAVE_MEMCPY
  60. #endif /* CONFIG_H */