aboutsummaryrefslogtreecommitdiff
path: root/m4/check-libc.m4
diff options
context:
space:
mode:
authorcelan69 <christian@kuehnke.de>2016-07-19 12:11:28 +0200
committerGitHub <noreply@github.com>2016-07-19 12:11:28 +0200
commit1b10e48a1f0f6a4b51d0e9e1a6cd6820d3475fd5 (patch)
treed9eec27f7d8d15d47665129513b007d361c339d5 /m4/check-libc.m4
parenta9332ccecfce63bf54924e70c11f420edd3ae312 (diff)
downloadportable-1b10e48a1f0f6a4b51d0e9e1a6cd6820d3475fd5.tar.gz
portable-1b10e48a1f0f6a4b51d0e9e1a6cd6820d3475fd5.tar.bz2
portable-1b10e48a1f0f6a4b51d0e9e1a6cd6820d3475fd5.zip
Fix typo in USE_BUILTIN_ARC4RANDOM check
Solaris 11 recently introduced a builtin arc4random in libc which fails the tests in "make check". Found USE_BUILTIN_ARC4RANDOM, but could not get it to work. Apparently, there is a typo in the configure logic rendering USE_BUILTIN_ARC4RANDOM ineffective.
Diffstat (limited to 'm4/check-libc.m4')
-rw-r--r--m4/check-libc.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/check-libc.m4 b/m4/check-libc.m4
index a8f6646..f2eb3eb 100644
--- a/m4/check-libc.m4
+++ b/m4/check-libc.m4
@@ -59,7 +59,7 @@ AM_CONDITIONAL([HAVE_TIMINGSAFE_MEMCMP], [test "x$ac_cv_func_timingsafe_memcmp"
59 59
60# Override arc4random_buf implementations with known issues 60# Override arc4random_buf implementations with known issues
61AM_CONDITIONAL([HAVE_ARC4RANDOM_BUF], 61AM_CONDITIONAL([HAVE_ARC4RANDOM_BUF],
62 [test "x$USE_BUILTIN_ARC4RANDOM" != yes \ 62 [test "x$USE_BUILTIN_ARC4RANDOM" != xyes \
63 -a "x$ac_cv_func_arc4random_buf" = xyes]) 63 -a "x$ac_cv_func_arc4random_buf" = xyes])
64 64
65# Check for getentropy fallback dependencies 65# Check for getentropy fallback dependencies