#undef _TIME_BITS
#include <time.h>
]])
- AS_IF([test $ac_cv_sizeof_time_t = 8], [
+ AS_IF([test $ac_cv_sizeof_time_t -eq 8], [
libbsd_sys_time_bits=64
], [
libbsd_sys_time_bits=32
#define _TIME_BITS 64
#include <time.h>
]])
- AS_IF([test $ac_cv_sizeof_time_t = 8], [
+ AS_IF([test $ac_cv_sizeof_time_t -eq 8], [
libbsd_sys_has_time64=1
], [
libbsd_sys_has_time64=0
[Enable if the system supports 64-bit time_t])
AC_SUBST([LIBBSD_SYS_HAS_TIME64], [$libbsd_sys_has_time64])
AM_CONDITIONAL([LIBBSD_SYS_HAS_TIME64], [test "$libbsd_sys_has_time64" -eq 1])
- AS_IF([test "$libbsd_sys_time_bits" = 32 && \
+ AS_IF([test "$libbsd_sys_time_bits" -eq 32 && \
test "$libbsd_sys_has_time64" -eq 1], [
abi_time64=yes
], [
])
LIBBSD_SELECT_ABI([time64], [explicit time64 time_t support])
- AS_IF([test $ac_cv_sys_file_offset_bits = 64 && \
- test $libbsd_sys_time_bits = 32 && \
- test $ac_cv_sizeof_time_t = 8], [
+ AS_IF([test $ac_cv_sys_file_offset_bits -eq 64 && \
+ test $libbsd_sys_time_bits -eq 32 && \
+ test $ac_cv_sizeof_time_t -eq 8], [
AC_DEFINE([_TIME_BITS], [64], [Enable 64-bit time_t support])
])
])