aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index dfa59b5..b434190 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,7 +77,7 @@ CFLAGS="$CFLAGS $CLANG_CFLAGS"
77LDFLAGS="$LDFLAGS $CLANG_FLAGS" 77LDFLAGS="$LDFLAGS $CLANG_FLAGS"
78 78
79AC_CHECK_FUNCS([arc4random_buf asprintf explicit_bzero funopen getauxval]) 79AC_CHECK_FUNCS([arc4random_buf asprintf explicit_bzero funopen getauxval])
80AC_CHECK_FUNCS([getentropy issetugid memmem reallocarray]) 80AC_CHECK_FUNCS([getentropy issetugid memmem poll reallocarray])
81AC_CHECK_FUNCS([strlcat strlcpy strndup strnlen strtonum]) 81AC_CHECK_FUNCS([strlcat strlcpy strndup strnlen strtonum])
82AC_CHECK_FUNCS([timingsafe_bcmp timingsafe_memcmp]) 82AC_CHECK_FUNCS([timingsafe_bcmp timingsafe_memcmp])
83 83
@@ -88,6 +88,7 @@ AM_CONDITIONAL([HAVE_EXPLICIT_BZERO], [test "x$ac_cv_func_explicit_bzero" = xyes
88AM_CONDITIONAL([HAVE_GETENTROPY], [test "x$ac_cv_func_getentropy" = xyes]) 88AM_CONDITIONAL([HAVE_GETENTROPY], [test "x$ac_cv_func_getentropy" = xyes])
89AM_CONDITIONAL([HAVE_ISSETUGID], [test "x$ac_cv_func_issetugid" = xyes]) 89AM_CONDITIONAL([HAVE_ISSETUGID], [test "x$ac_cv_func_issetugid" = xyes])
90AM_CONDITIONAL([HAVE_MEMMEM], [test "x$ac_cv_func_memmem" = xyes]) 90AM_CONDITIONAL([HAVE_MEMMEM], [test "x$ac_cv_func_memmem" = xyes])
91AM_CONDITIONAL([HAVE_POLL], [test "x$ac_cv_func_poll" = xyes])
91AM_CONDITIONAL([HAVE_REALLOCARRAY], [test "x$ac_cv_func_reallocarray" = xyes]) 92AM_CONDITIONAL([HAVE_REALLOCARRAY], [test "x$ac_cv_func_reallocarray" = xyes])
92AM_CONDITIONAL([HAVE_STRLCAT], [test "x$ac_cv_func_strlcat" = xyes]) 93AM_CONDITIONAL([HAVE_STRLCAT], [test "x$ac_cv_func_strlcat" = xyes])
93AM_CONDITIONAL([HAVE_STRLCPY], [test "x$ac_cv_func_strlcpy" = xyes]) 94AM_CONDITIONAL([HAVE_STRLCPY], [test "x$ac_cv_func_strlcpy" = xyes])