home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / crypl200.zip / BNLIB / CONFIG.HIN < prev    next >
Text File  |  1996-01-28  |  2KB  |  74 lines

  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.  
  12. /* Define to empty if the compiler does not support 'const' variables. */
  13. #undef const
  14.  
  15. /* Define to `unsigned' if <sys/types.h> doesn't define it. */
  16. #undef size_t
  17.  
  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.  
  28. #define HAVE_STRINGS_H 0
  29. #define NEED_MEMORY_H 0
  30.  
  31. /* We go to some trouble to find accurate times... */
  32.  
  33. /* Define if you have Posix.4 glock_gettime() */
  34. #define HAVE_CLOCK_GETTIME 0
  35. /* Define if you have Solaris-style gethrvtime() */
  36. #define HAVE_GETHRVTIME 0
  37. /* Define if you have getrusage() */
  38. #define HAVE_GETRUSAGE 0
  39. /* Define if you have clock() */
  40. #define HAVE_CLOCK 0
  41. /* Define if you have time() */
  42. #define HAVE_TIME 0
  43.  
  44. /*
  45.  * Define as 0 if #including <sys/time.h> automatically
  46.  * #includes <time.h>, and doing so explicitly causes an
  47.  * error.
  48.  */
  49. #define TIME_WITH_SYS_TIME 0
  50.  
  51. /* Defines for various kinds of library brokenness */
  52.  
  53. /* Define if <stdio.h> is missing prototypes (= lots of warnings!) */
  54. #define NO_STDIO_PROTOS 0
  55.  
  56. /* Define if <assert.h> depends on <stdio.h> and breaks without it */
  57. #define ASSERT_NEEDS_STDIO 0
  58. /* Define if <assert.h> depends on <stdlib.h> and complains without it */
  59. #define ASSERT_NEEDS_STDLIB 0
  60.  
  61. /*
  62.  * Define if <string.h> delcares the mem* functions to take char *
  63.  * instead of void * parameters (= lots of warnings)
  64.  */
  65. #define MEM_PROTOS_BROKEN 0
  66.  
  67. /* If not available, bcopy() is substituted */
  68. #define HAVE_MEMMOVE 0
  69. #define NO_MEMMOVE !HAVE_MEMMOVE
  70. #define HAVE_MEMCPY 0
  71. #define NO_MEMCPY !HAVE_MEMCPY
  72.  
  73. #endif /* CONFIG_H */
  74.