diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-12-07 16:07:27 -0500 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-08 23:37:48 +0100 |
commit | 9ffc2e809c9a1a6be135d6ec5503e8d0717d2cc0 (patch) | |
tree | 0de2cb1967ac3bd8610389904588c1a001352596 /package/dhrystone/dhrystone-2-HZ.patch | |
parent | beb56ca618da3c2bcffb806c6d7fae725e56162e (diff) |
dhrystone: new benchmark package
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/dhrystone/dhrystone-2-HZ.patch')
-rw-r--r-- | package/dhrystone/dhrystone-2-HZ.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/dhrystone/dhrystone-2-HZ.patch b/package/dhrystone/dhrystone-2-HZ.patch new file mode 100644 index 000000000..e3b8a0e05 --- /dev/null +++ b/package/dhrystone/dhrystone-2-HZ.patch @@ -0,0 +1,17 @@ +Get HZ value from system rather than requiring via CPPFLAGS + +Patch by Robin Getz <rgetz@blackfin.uclinux.org> + +--- a/dhry.h ++++ b/dhry.h +@@ -359,6 +359,10 @@ + /* for "times" */ + #endif + ++#ifndef HZ ++#include <sys/param.h> ++#endif ++ + #define Mic_secs_Per_Second 1000000.0 + /* Berkeley UNIX C returns process times in seconds/HZ */ + |