View | Details | Raw Unified | Return to bug 2168
Collapse All | Expand All

(-)configure.ac (+1 lines)
Lines 1528-1533 dnl Checks for library functions. Ple Link Here
1528
AC_CHECK_FUNCS([ \
1528
AC_CHECK_FUNCS([ \
1529
	arc4random \
1529
	arc4random \
1530
	arc4random_buf \
1530
	arc4random_buf \
1531
	arc4random_stir \
1531
	arc4random_uniform \
1532
	arc4random_uniform \
1532
	asprintf \
1533
	asprintf \
1533
	b64_ntop \
1534
	b64_ntop \
(-)openbsd-compat/openbsd-compat.h (-2 / +8 lines)
Lines 163-172 int writev(int, struct iovec *, int); Link Here
163
int getpeereid(int , uid_t *, gid_t *);
163
int getpeereid(int , uid_t *, gid_t *);
164
#endif 
164
#endif 
165
165
166
#ifndef HAVE_ARC4RANDOM
166
#ifdef HAVE_ARC4RANDOM
167
/* If the platform doesn't provide arc4random_stir() then its
168
   arc4random implementation does not need manual reseeding. */
169
# ifndef HAVE_ARC4RANDOM_STIR
170
#  define arc4random_stir() ((void)0)
171
# endif
172
#else
167
unsigned int arc4random(void);
173
unsigned int arc4random(void);
168
void arc4random_stir(void);
174
void arc4random_stir(void);
169
#endif /* !HAVE_ARC4RANDOM */
175
#endif /* HAVE_ARC4RANDOM */
170
176
171
#ifndef HAVE_ARC4RANDOM_BUF
177
#ifndef HAVE_ARC4RANDOM_BUF
172
void arc4random_buf(void *, size_t);
178
void arc4random_buf(void *, size_t);

Return to bug 2168