Commit 149aafe1983893c44265352e47aca1cae73b9508

Guillem Jover 2024-03-14T01:59:19

build: Use -eq instead of = as test operators for arithmetic tests

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])
   ])
 ])