Skip to content

Commit

Permalink
experimental upstream patch to fix rlim_t fallback autodetection
Browse files Browse the repository at this point in the history
  • Loading branch information
mirabilos committed Apr 2, 2024
1 parent 45ffe23 commit 089aa8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2468,20 +2468,20 @@ if test 10 = "$HAVE_RLIMIT$HAVE_RLIM_T"; then
fv=RLT_SI ;;
u_int|unsigned|unsigned\ int)
fv=RLT_UI ;;
long|signed\ long)
long|long\ int|signed\ long|signed\ long\ int)
fv=RLT_SL ;;
u_long|unsigned\ long)
u_long|unsigned\ long|unsigned\ long\ int)
fv=RLT_UL ;;
long\ long|signed\ long\ long)
long\ long|long\ long\ int|signed\ long\ long|signed\ long\ long\ int)
fv=RLT_SQ ;;
unsigned\ long\ long)
unsigned\ long\ long|unsigned\ long\ long\ int)
fv=RLT_UQ ;;
[a-z_]*_t)
fv=`echo " $fr" | sed -n '/^ \([a-z0-9_]*_t\)$/s//\1/p'` ;;
*)
fx="(could not be determined from $fr)"
fv= ;;
esac
test_n "$fv" || fx="(could not be determined from $fr)"
else
fx=' (cached)'
fi
Expand Down

0 comments on commit 089aa8c

Please sign in to comment.