Codebase list openssl / 9e48783
undefine HZ so that the code falls back to sysconf(_SC_CLK_TCK) to fix a build failure on alpha. Kurt Roeckx 16 years ago
2 changed file(s) with 8 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
116116
117117 /* The following if from times(3) man page. It may need to be changed
118118 */
119 #undef HZ
119120 #ifndef HZ
120121 # ifdef _SC_CLK_TCK
121122 # define HZ ((double)sysconf(_SC_CLK_TCK))
0 openssl (0.9.8g-10) unstable; urgency=low
1
2 * undefine HZ so that the code falls back to sysconf(_SC_CLK_TCK)
3 to fix a build failure on alpha.
4
5 -- Kurt Roeckx <kurt@roeckx.be> Thu, 08 May 2008 17:56:13 +0000
6
07 openssl (0.9.8g-9) unstable; urgency=high
18
29 [ Christoph Martin ]