aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-10-17 22:57:59 -0500
committerBrent Cook <bcook@openbsd.org>2015-10-17 22:57:59 -0500
commita45e38e962a30307dd2034c2c032bd76333ebd2c (patch)
treed290d9f6ef87032b1cae22716acde57bf028814a /configure.ac
parente8c92100735f1e32d4b6f4a5a2670a0bf98ad1a8 (diff)
downloadportable-a45e38e962a30307dd2034c2c032bd76333ebd2c.tar.gz
portable-a45e38e962a30307dd2034c2c032bd76333ebd2c.tar.bz2
portable-a45e38e962a30307dd2034c2c032bd76333ebd2c.zip
disable some tests with 32-bit time_t systems
Also disable use of _mkgmtime, it does not produce correct results.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index c103399..e97991d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -48,6 +48,9 @@ AM_CONDITIONAL([BUILD_CERTHASH], [test "x$ac_cv_func_symlink" = xyes])
48# Check if funopen exists 48# Check if funopen exists
49AC_CHECK_FUNC([funopen]) 49AC_CHECK_FUNC([funopen])
50 50
51# Check if time_t is sized correctly
52AC_CHECK_SIZEOF([time_t], [time.h])
53
51CHECK_LIBC_COMPAT 54CHECK_LIBC_COMPAT
52CHECK_SYSCALL_COMPAT 55CHECK_SYSCALL_COMPAT
53CHECK_CRYPTO_COMPAT 56CHECK_CRYPTO_COMPAT