diff options
author | mrg <mrg@pkgsrc.org> | 2017-08-04 18:15:05 +0000 |
---|---|---|
committer | mrg <mrg@pkgsrc.org> | 2017-08-04 18:15:05 +0000 |
commit | f24558719aeea7872d8cece821284b6f0982c6ae (patch) | |
tree | c172db181af71c4a974ac007cd1d7cc5a782ff0a /benchmarks | |
parent | c917bff529b900536983e1f31e2707eed60e1fc1 (diff) | |
download | pkgsrc-f24558719aeea7872d8cece821284b6f0982c6ae.tar.gz |
remove a K&R-style prototype for bzero() that was being expanded
via a macro and breaking the build.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/iozone/distinfo | 3 | ||||
-rw-r--r-- | benchmarks/iozone/patches/patch-fileop.c | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/benchmarks/iozone/distinfo b/benchmarks/iozone/distinfo index 9c869b1513f..f12bbcf8121 100644 --- a/benchmarks/iozone/distinfo +++ b/benchmarks/iozone/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.23 2015/11/03 00:25:50 agc Exp $ +$NetBSD: distinfo,v 1.24 2017/08/04 18:15:05 mrg Exp $ SHA1 (iozone3_430.tar) = de02b10fcde6bd60e0c805e3abfc0aed15e85ac1 RMD160 (iozone3_430.tar) = 4b43f14268ebe3accf8cdc881c3f82430d649082 @@ -6,5 +6,6 @@ SHA512 (iozone3_430.tar) = f513c1a34bcdfadca0d01a942d55c7494e5646cf17384140df426 Size (iozone3_430.tar) = 1832960 bytes SHA1 (patch-ab) = fdd36fead26811aa830df5fac35b79a9b62ed1f0 SHA1 (patch-ac) = 6a02e13f3441a76709fbe8ba064555b650f9bd1c +SHA1 (patch-fileop.c) = 792dd0e3ad9de4313d34e367ea0c01d9be319229 SHA1 (patch-libasync.c) = 2c1bebb4423ea84329511cc7fd32d093a6063bf9 SHA1 (patch-makefile) = 0eb68d8838141e96b08a156f59ed197407eb95e9 diff --git a/benchmarks/iozone/patches/patch-fileop.c b/benchmarks/iozone/patches/patch-fileop.c new file mode 100644 index 00000000000..60a6eec597e --- /dev/null +++ b/benchmarks/iozone/patches/patch-fileop.c @@ -0,0 +1,14 @@ +$NetBSD: patch-fileop.c,v 1.1 2017/08/04 18:15:05 mrg Exp $ + +remove a macro-as-prototype failure. + +--- fileop.c.orig 2015-01-07 12:43:10.000000000 -0800 ++++ fileop.c 2017-08-04 11:05:36.713202977 -0700 +@@ -124,7 +124,6 @@ + void file_read(int); + void splash(void); + void usage(void); +-void bzero(); + void clear_stats(); + int validate(char *, int , char ); + |