diff options
author | jmc <jmc@pkgsrc.org> | 2003-08-18 05:31:03 +0000 |
---|---|---|
committer | jmc <jmc@pkgsrc.org> | 2003-08-18 05:31:03 +0000 |
commit | 89ef6b2d96ed1019f4be9843deb22b91e3d1e7eb (patch) | |
tree | 7df7f293f49ada5eaf7552d63c04ea7015d6dc55 /lang | |
parent | 304b9de2e703c78fad61128e8b3a84e910b6d81a (diff) | |
download | pkgsrc-89ef6b2d96ed1019f4be9843deb22b91e3d1e7eb.tar.gz |
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.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/clisp/distinfo | 4 | ||||
-rw-r--r-- | lang/clisp/patches/patch-aj | 13 | ||||
-rw-r--r-- | lang/clisp/patches/patch-ak | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/lang/clisp/distinfo b/lang/clisp/distinfo index c0c8deb5a1a..ea21fed04a0 100644 --- a/lang/clisp/distinfo +++ b/lang/clisp/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.5 2003/07/13 14:34:49 dillo Exp $ +$NetBSD: distinfo,v 1.6 2003/08/18 05:31:03 jmc Exp $ SHA1 (clisp-2.30.tar.bz2) = 7335116934d30cb327f4724047a1362498b85520 Size (clisp-2.30.tar.bz2) = 5652698 bytes @@ -11,3 +11,5 @@ SHA1 (patch-af) = a7c13cf848c370b676458a5b2e46a8fdcf4caa7f SHA1 (patch-ag) = 5ad9fe11abdea49780bdd0a01bf697d8ad07123c SHA1 (patch-ah) = ab42e8107d24a6ac86992aad5aa335ad33cfac62 SHA1 (patch-ai) = 89f19718514b813b008ed92de8b538c76d341a53 +SHA1 (patch-aj) = 529b11e3cc3a3f72d4428d6f69bdce7bb9b33b97 +SHA1 (patch-ak) = f9152d73ddb74d4190ca6a91439a9173fbab5274 diff --git a/lang/clisp/patches/patch-aj b/lang/clisp/patches/patch-aj new file mode 100644 index 00000000000..eb4e3734bd8 --- /dev/null +++ b/lang/clisp/patches/patch-aj @@ -0,0 +1,13 @@ +$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) diff --git a/lang/clisp/patches/patch-ak b/lang/clisp/patches/patch-ak new file mode 100644 index 00000000000..fc82db7bbfb --- /dev/null +++ b/lang/clisp/patches/patch-ak @@ -0,0 +1,13 @@ +$NetBSD: patch-ak,v 1.1 2003/08/18 05:31:04 jmc Exp $ + +--- autoconf/aclocal.m4.orig Sun Aug 17 23:54:26 2003 ++++ autoconf/aclocal.m4 Sun Aug 17 23:54:35 2003 +@@ -5645,7 +5645,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) |