build: Use -eq instead of = as test operators for arithmetic tests
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
diff --git a/m4/libbsd-large.m4 b/m4/libbsd-large.m4
index d279111..dc00c6e 100644
--- a/m4/libbsd-large.m4
+++ b/m4/libbsd-large.m4
@@ -9,7 +9,7 @@ AC_DEFUN([LIBBSD_SYS_TIME64], [
#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
@@ -26,7 +26,7 @@ AC_DEFUN([LIBBSD_SYS_TIME64], [
#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
@@ -35,7 +35,7 @@ AC_DEFUN([LIBBSD_SYS_TIME64], [
[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
], [
@@ -43,9 +43,9 @@ AC_DEFUN([LIBBSD_SYS_TIME64], [
])
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])
])
])