Hello, in the attachement you will find the small between the old version and the NMUed version.
Regards, -- .''`. Mario Iseli <[EMAIL PROTECTED]> : :' : proud user of Debian unstable `. `'` `- Debian - when you have better things to do than fixing a system
diff -Naur icon-9.4.2.old/debian/changelog icon-9.4.2/debian/changelog --- icon-9.4.2.old/debian/changelog 2007-05-17 18:18:37.000000000 +0200 +++ icon-9.4.2/debian/changelog 2007-05-17 18:18:52.000000000 +0200 @@ -1,3 +1,11 @@ +icon (9.4.2-2.8) unstable; urgency=medium + + * Non-maintainer upload during BSP. + * Substitute CLK_TCK with CLOCKS_PER_SEC in src/common/time.c (Closes: + #420979). + + -- Mario Iseli <[EMAIL PROTECTED]> Thu, 17 May 2007 18:10:20 +0200 + icon (9.4.2-2.7) unstable; urgency=low * NMU diff -Naur icon-9.4.2.old/src/common/time.c icon-9.4.2/src/common/time.c --- icon-9.4.2.old/src/common/time.c 2002-07-09 18:49:27.000000000 +0200 +++ icon-9.4.2/src/common/time.c 2007-05-17 18:18:52.000000000 +0200 @@ -32,7 +32,7 @@ t = cptime(); if (starttime == -2) starttime = t; - return (long) ((1000.0 / CLK_TCK) * (t - starttime)); + return (long) ((1000.0 / CLOCKS_PER_SEC) * (t - starttime)); } #else /* NoPosixTimes */