diff options
author | Brent Cook <bcook@openbsd.org> | 2015-10-17 22:57:59 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-10-17 22:57:59 -0500 |
commit | a45e38e962a30307dd2034c2c032bd76333ebd2c (patch) | |
tree | d290d9f6ef87032b1cae22716acde57bf028814a /configure.ac | |
parent | e8c92100735f1e32d4b6f4a5a2670a0bf98ad1a8 (diff) | |
download | portable-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.ac | 3 |
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 |
49 | AC_CHECK_FUNC([funopen]) | 49 | AC_CHECK_FUNC([funopen]) |
50 | 50 | ||
51 | # Check if time_t is sized correctly | ||
52 | AC_CHECK_SIZEOF([time_t], [time.h]) | ||
53 | |||
51 | CHECK_LIBC_COMPAT | 54 | CHECK_LIBC_COMPAT |
52 | CHECK_SYSCALL_COMPAT | 55 | CHECK_SYSCALL_COMPAT |
53 | CHECK_CRYPTO_COMPAT | 56 | CHECK_CRYPTO_COMPAT |