pkgsrc/lang/clisp/patches/patch-aj
jmc 89ef6b2d96 Tweak the getrusage test to a much larger loop value as my machine was fast
enough in the testing for instance that it never got usage on the process.
2003-08-18 05:31:03 +00:00

13 lines
393 B
Text

$NetBSD: patch-aj,v 1.1 2003/08/18 05:31:04 jmc Exp $
--- configure.orig Sun Aug 17 23:52:14 2003
+++ configure Sun Aug 17 23:52:50 2003
@@ -13599,7 +13599,7 @@
if (!(getrusage(RUSAGE_SELF, &prev) == 0)) exit(1);
sleep (1);
- while (++count < 10000)
+ while (++count < 100000)
{
getrusage(RUSAGE_SELF, &used);
if ((used.ru_utime.tv_usec != prev.ru_utime.tv_usec)