diff options
author | wiz <wiz@pkgsrc.org> | 2003-03-10 10:00:38 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-03-10 10:00:38 +0000 |
commit | fa8adc21a12611c2c4d588e824ba559b460754eb (patch) | |
tree | 132c5ecc491fc408fd07bd58a456de076df36607 /benchmarks | |
parent | 34bd401936fd0b396971bc2f5805069ff2ae1bc9 (diff) | |
download | pkgsrc-fa8adc21a12611c2c4d588e824ba559b460754eb.tar.gz |
Update to 1.03a. Changes:
bonnie++ (1.03a) unstable; urgency=low
* Fixed the bugs in GCC 3.2 compilation and compiled with GCC 3.2. Results
will be slightly lower now, but it's still a fair test of compiler/OS...
bonnie++ (1.03) unstable; urgency=low
* Fixed a bug in error handling during a stat test with multiple directories.
bonnie++ (1.02d) unstable; urgency=low
* Fixed a bug where it would SEGV if you specified more than 999 directories
(now it handles 99,999 and displays an error message if you ask for more).
Closes: #171507
* Made it build on Irix.
* Fixed <vector> and <algo> checks to work with GCC 3.2.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/bonnie++/Makefile | 4 | ||||
-rw-r--r-- | benchmarks/bonnie++/distinfo | 9 | ||||
-rw-r--r-- | benchmarks/bonnie++/patches/patch-aa | 21 | ||||
-rw-r--r-- | benchmarks/bonnie++/patches/patch-ab | 12 |
4 files changed, 17 insertions, 29 deletions
diff --git a/benchmarks/bonnie++/Makefile b/benchmarks/bonnie++/Makefile index 5f07854068e..e93273713eb 100644 --- a/benchmarks/bonnie++/Makefile +++ b/benchmarks/bonnie++/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2002/09/20 23:48:12 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2003/03/10 10:00:38 wiz Exp $ # -DISTNAME= bonnie++-1.02c +DISTNAME= bonnie++-1.03a CATEGORIES= benchmarks MASTER_SITES= http://www.coker.com.au/bonnie++/ EXTRACT_SUFX= .tgz diff --git a/benchmarks/bonnie++/distinfo b/benchmarks/bonnie++/distinfo index 620f3529b84..2cf7ec69303 100644 --- a/benchmarks/bonnie++/distinfo +++ b/benchmarks/bonnie++/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.2 2002/09/17 08:18:58 jlam Exp $ +$NetBSD: distinfo,v 1.3 2003/03/10 10:00:38 wiz Exp $ -SHA1 (bonnie++-1.02c.tgz) = cf4a11b455dded7e42a71d0d6bfcd3503b5f23c2 -Size (bonnie++-1.02c.tgz) = 60011 bytes -SHA1 (patch-aa) = 092b66e6bedb6166650b7b37ac4880a1151e5f84 -SHA1 (patch-ab) = 843b4b024124ae9efd1361d190b51bd77c8fc12b +SHA1 (bonnie++-1.03a.tgz) = b519b79a00fb7145d51320abc3cd46caca7ff05b +Size (bonnie++-1.03a.tgz) = 76207 bytes +SHA1 (patch-aa) = 2edc5fb589af0d8fbeaba89e3fd38f01a6115090 diff --git a/benchmarks/bonnie++/patches/patch-aa b/benchmarks/bonnie++/patches/patch-aa index af63b102627..723b83a5a0b 100644 --- a/benchmarks/bonnie++/patches/patch-aa +++ b/benchmarks/bonnie++/patches/patch-aa @@ -1,14 +1,15 @@ -$NetBSD: patch-aa,v 1.2 2002/09/17 08:18:59 jlam Exp $ +$NetBSD: patch-aa,v 1.3 2003/03/10 10:00:38 wiz Exp $ ---- bonnie++.cpp.orig Thu Apr 11 16:23:37 2002 +--- bonnie++.cpp.orig Tue Dec 3 14:40:35 2002 +++ bonnie++.cpp -@@ -154,7 +154,9 @@ int main(int argc, char *argv[]) - exitNow = false; +@@ -42,6 +42,10 @@ + #include <sys/utsname.h> + #include <signal.h> - struct sigaction sa; -+#ifndef __NetBSD__ - sa.sa_sigaction = NULL; ++#ifndef SA_SIGINFO ++#define SA_SIGINFO 0x0040 +#endif - sa.sa_handler = ctrl_c_handler; - sa.sa_flags = SA_RESETHAND; - if(sigaction(SIGINT, &sa, NULL) ++ + #ifdef AIX_MEM_SIZE + #include <cf.h> + #include <sys/cfgodm.h> diff --git a/benchmarks/bonnie++/patches/patch-ab b/benchmarks/bonnie++/patches/patch-ab deleted file mode 100644 index d2d2c164602..00000000000 --- a/benchmarks/bonnie++/patches/patch-ab +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-ab,v 1.1.1.1 2001/07/16 23:20:43 garbled Exp $ ---- Makefile.in.orig Mon Jul 16 16:10:10 2001 -+++ Makefile.in Mon Jul 16 16:11:01 2001 -@@ -34,7 +34,7 @@ - install-bin: $(EXES) - mkdir -p $(eprefix)/bin $(eprefix)/sbin - @INSTALL_PROGRAM@ @stripping@ $(EXES) $(eprefix)/sbin -- @INSTALL_PROGRAM@ $(SCRIPTS) $(eprefix)/bin -+ @INSTALL_SCRIPT@ $(SCRIPTS) $(eprefix)/bin - - install: install-bin - mkdir -p @mandir@/man1 @mandir@/man8 |