mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 08:11:50 -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
411 B
Text
11 lines
411 B
Text
--- configure.orig 2022-09-23 14:13:22 UTC
|
|
+++ configure
|
|
@@ -20443,7 +20443,7 @@ fi
|
|
|
|
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $bash_cv_func_strtoimax" >&5
|
|
printf "%s\n" "$bash_cv_func_strtoimax" >&6; }
|
|
-if test $bash_cv_func_strtoimax = yes; then
|
|
+if test $bash_cv_func_strtoimax = no ; then
|
|
case " $LIBOBJS " in
|
|
*" strtoimax.$ac_objext "* ) ;;
|
|
*) LIBOBJS="$LIBOBJS strtoimax.$ac_objext"
|