mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
The logic in m4/strtoimax.m4 is inverted: it replaces strtoimax() if and only if it is present and functional. files/patch-configure avoids having to run autoreconf in the port and can be removed once the fix has been adopted upstream. differential Revision: https://reviews.freebsd.org/D36849
11 lines
293 B
Text
11 lines
293 B
Text
--- m4/strtoimax.m4.orig 2022-04-11 20:31:52 UTC
|
|
+++ m4/strtoimax.m4
|
|
@@ -29,7 +29,7 @@ AC_CACHE_VAL(bash_cv_func_strtoimax,
|
|
fi
|
|
])
|
|
AC_MSG_RESULT($bash_cv_func_strtoimax)
|
|
-if test $bash_cv_func_strtoimax = yes; then
|
|
+if test $bash_cv_func_strtoimax = no; then
|
|
AC_LIBOBJ(strtoimax)
|
|
fi
|
|
])
|