diff options
author | Brent Cook <bcook@openbsd.org> | 2015-02-23 09:48:04 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-02-23 09:48:04 -0600 |
commit | 347c03d3a02e63775ec6b0c3aa94aef2b41f599d (patch) | |
tree | eb0564d163d87fe5433c7b8d5640062031c39d5b | |
parent | 9da890ffb97c1ae9699e74666fb7186308435973 (diff) | |
download | portable-347c03d3a02e63775ec6b0c3aa94aef2b41f599d.tar.gz portable-347c03d3a02e63775ec6b0c3aa94aef2b41f599d.tar.bz2 portable-347c03d3a02e63775ec6b0c3aa94aef2b41f599d.zip |
remove openat requirement for building certhash
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 66e9555..9212fb7 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -197,7 +197,7 @@ LDFLAGS="$LDFLAGS $CLANG_FLAGS" | |||
197 | AC_CHECK_FUNCS([arc4random_buf asprintf explicit_bzero funopen getauxval]) | 197 | AC_CHECK_FUNCS([arc4random_buf asprintf explicit_bzero funopen getauxval]) |
198 | AC_CHECK_FUNCS([getentropy issetugid memmem poll reallocarray]) | 198 | AC_CHECK_FUNCS([getentropy issetugid memmem poll reallocarray]) |
199 | AC_CHECK_FUNCS([strlcat strlcpy strndup strnlen strsep strtonum]) | 199 | AC_CHECK_FUNCS([strlcat strlcpy strndup strnlen strsep strtonum]) |
200 | AC_CHECK_FUNCS([symlink openat]) | 200 | AC_CHECK_FUNCS([symlink]) |
201 | AC_CHECK_FUNCS([timingsafe_bcmp timingsafe_memcmp]) | 201 | AC_CHECK_FUNCS([timingsafe_bcmp timingsafe_memcmp]) |
202 | 202 | ||
203 | # Share test results with automake | 203 | # Share test results with automake |
@@ -217,7 +217,7 @@ AM_CONDITIONAL([HAVE_STRSEP], [test "x$ac_cv_func_strsep" = xyes]) | |||
217 | AM_CONDITIONAL([HAVE_STRTONUM], [test "x$ac_cv_func_strtonum" = xyes]) | 217 | AM_CONDITIONAL([HAVE_STRTONUM], [test "x$ac_cv_func_strtonum" = xyes]) |
218 | AM_CONDITIONAL([HAVE_TIMINGSAFE_BCMP], [test "x$ac_cv_func_timingsafe_bcmp" = xyes]) | 218 | AM_CONDITIONAL([HAVE_TIMINGSAFE_BCMP], [test "x$ac_cv_func_timingsafe_bcmp" = xyes]) |
219 | AM_CONDITIONAL([HAVE_TIMINGSAFE_MEMCMP], [test "x$ac_cv_func_timingsafe_memcmp" = xyes]) | 219 | AM_CONDITIONAL([HAVE_TIMINGSAFE_MEMCMP], [test "x$ac_cv_func_timingsafe_memcmp" = xyes]) |
220 | AM_CONDITIONAL([BUILD_CERTHASH], [test "x$ac_cv_func_symlink" = xyes -a "x$ac_cv_func_openat" = xyes]) | 220 | AM_CONDITIONAL([BUILD_CERTHASH], [test "x$ac_cv_func_symlink" = xyes]) |
221 | 221 | ||
222 | # overrides for arc4random_buf implementations with known issues | 222 | # overrides for arc4random_buf implementations with known issues |
223 | AM_CONDITIONAL([HAVE_ARC4RANDOM_BUF], | 223 | AM_CONDITIONAL([HAVE_ARC4RANDOM_BUF], |