Deleted Added
full compact
config.h.in (282089) config.h.in (287917)
1/* config.h.in. Generated from configure.ac by autoheader. */
2
3/* Directory to chroot to */
4#undef CHROOT_DIR
5
6/* Do sha512 definitions in config.h */
7#undef COMPAT_SHA512
8

--- 56 unchanged lines hidden (view full) ---

65/* Define to 1 if you have the declaration of `NID_secp384r1', and to 0 if you
66 don't. */
67#undef HAVE_DECL_NID_SECP384R1
68
69/* Define to 1 if you have the declaration of `NID_X9_62_prime256v1', and to 0
70 if you don't. */
71#undef HAVE_DECL_NID_X9_62_PRIME256V1
72
1/* config.h.in. Generated from configure.ac by autoheader. */
2
3/* Directory to chroot to */
4#undef CHROOT_DIR
5
6/* Do sha512 definitions in config.h */
7#undef COMPAT_SHA512
8

--- 56 unchanged lines hidden (view full) ---

65/* Define to 1 if you have the declaration of `NID_secp384r1', and to 0 if you
66 don't. */
67#undef HAVE_DECL_NID_SECP384R1
68
69/* Define to 1 if you have the declaration of `NID_X9_62_prime256v1', and to 0
70 if you don't. */
71#undef HAVE_DECL_NID_X9_62_PRIME256V1
72
73/* Define to 1 if you have the declaration of `reallocarray', and to 0 if you
74 don't. */
75#undef HAVE_DECL_REALLOCARRAY
76
73/* Define to 1 if you have the declaration of `sk_SSL_COMP_pop_free', and to 0
74 if you don't. */
75#undef HAVE_DECL_SK_SSL_COMP_POP_FREE
76
77/* Define to 1 if you have the declaration of
78 `SSL_COMP_get_compression_methods', and to 0 if you don't. */
79#undef HAVE_DECL_SSL_COMP_GET_COMPRESSION_METHODS
80

--- 180 unchanged lines hidden (view full) ---

261#undef HAVE_PWD_H
262
263/* Define if you have Python libraries and header files. */
264#undef HAVE_PYTHON
265
266/* Define to 1 if you have the `random' function. */
267#undef HAVE_RANDOM
268
77/* Define to 1 if you have the declaration of `sk_SSL_COMP_pop_free', and to 0
78 if you don't. */
79#undef HAVE_DECL_SK_SSL_COMP_POP_FREE
80
81/* Define to 1 if you have the declaration of
82 `SSL_COMP_get_compression_methods', and to 0 if you don't. */
83#undef HAVE_DECL_SSL_COMP_GET_COMPRESSION_METHODS
84

--- 180 unchanged lines hidden (view full) ---

265#undef HAVE_PWD_H
266
267/* Define if you have Python libraries and header files. */
268#undef HAVE_PYTHON
269
270/* Define to 1 if you have the `random' function. */
271#undef HAVE_RANDOM
272
273/* Define to 1 if you have the `reallocarray' function. */
274#undef HAVE_REALLOCARRAY
275
269/* Define to 1 if you have the `recvmsg' function. */
270#undef HAVE_RECVMSG
271
272/* Define to 1 if you have the `sbrk' function. */
273#undef HAVE_SBRK
274
275/* Define to 1 if you have the `sendmsg' function. */
276#undef HAVE_SENDMSG

--- 607 unchanged lines hidden (view full) ---

884
885
886#ifndef HAVE_GMTIME_R
887#define gmtime_r gmtime_r_unbound
888struct tm *gmtime_r(const time_t *timep, struct tm *result);
889#endif
890
891
276/* Define to 1 if you have the `recvmsg' function. */
277#undef HAVE_RECVMSG
278
279/* Define to 1 if you have the `sbrk' function. */
280#undef HAVE_SBRK
281
282/* Define to 1 if you have the `sendmsg' function. */
283#undef HAVE_SENDMSG

--- 607 unchanged lines hidden (view full) ---

891
892
893#ifndef HAVE_GMTIME_R
894#define gmtime_r gmtime_r_unbound
895struct tm *gmtime_r(const time_t *timep, struct tm *result);
896#endif
897
898
899#ifndef HAVE_REALLOCARRAY
900#define reallocarray reallocarrayunbound
901void* reallocarray(void *ptr, size_t nmemb, size_t size);
902#endif
903
904
892#if !defined(HAVE_SLEEP) || defined(HAVE_WINDOWS_H)
893#define sleep(x) Sleep((x)*1000) /* on win32 */
894#endif /* HAVE_SLEEP */
895
896
897#ifndef HAVE_USLEEP
898#define usleep(x) Sleep((x)/1000 + 1) /* on win32 */
899#endif /* HAVE_USLEEP */

--- 49 unchanged lines hidden (view full) ---

949size_t strlcat(char *dst, const char *src, size_t siz);
950# endif
951# if !HAVE_DECL_ARC4RANDOM && defined(HAVE_ARC4RANDOM)
952uint32_t arc4random(void);
953# endif
954# if !HAVE_DECL_ARC4RANDOM_UNIFORM && defined(HAVE_ARC4RANDOM_UNIFORM)
955uint32_t arc4random_uniform(uint32_t upper_bound);
956# endif
905#if !defined(HAVE_SLEEP) || defined(HAVE_WINDOWS_H)
906#define sleep(x) Sleep((x)*1000) /* on win32 */
907#endif /* HAVE_SLEEP */
908
909
910#ifndef HAVE_USLEEP
911#define usleep(x) Sleep((x)/1000 + 1) /* on win32 */
912#endif /* HAVE_USLEEP */

--- 49 unchanged lines hidden (view full) ---

962size_t strlcat(char *dst, const char *src, size_t siz);
963# endif
964# if !HAVE_DECL_ARC4RANDOM && defined(HAVE_ARC4RANDOM)
965uint32_t arc4random(void);
966# endif
967# if !HAVE_DECL_ARC4RANDOM_UNIFORM && defined(HAVE_ARC4RANDOM_UNIFORM)
968uint32_t arc4random_uniform(uint32_t upper_bound);
969# endif
970# if !HAVE_DECL_REALLOCARRAY
971void *reallocarray(void *ptr, size_t nmemb, size_t size);
972# endif
957#endif /* HAVE_LIBRESSL */
958#ifndef HAVE_ARC4RANDOM
959void explicit_bzero(void* buf, size_t len);
960int getentropy(void* buf, size_t len);
961uint32_t arc4random(void);
962void arc4random_buf(void* buf, size_t n);
963void _ARC4_LOCK(void);
964void _ARC4_UNLOCK(void);

--- 72 unchanged lines hidden ---
973#endif /* HAVE_LIBRESSL */
974#ifndef HAVE_ARC4RANDOM
975void explicit_bzero(void* buf, size_t len);
976int getentropy(void* buf, size_t len);
977uint32_t arc4random(void);
978void arc4random_buf(void* buf, size_t n);
979void _ARC4_LOCK(void);
980void _ARC4_UNLOCK(void);

--- 72 unchanged lines hidden ---