diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2003-03-15 12:24:22 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2003-03-15 12:24:22 +0000 |
commit | 28fc43ca1248b8ebd2b3ca70151d5375a59b6a3c (patch) | |
tree | 738aeeb40c227cae836b4b23f46c9352d574d16a /graphics/aqsis/patches | |
parent | fa0a801523c57aff0156dd78fc18a18967f6652d (diff) | |
download | pkgsrc-28fc43ca1248b8ebd2b3ca70151d5375a59b6a3c.tar.gz |
use a time_t * as the argument to time(3) to let this compile on 64 bit systems.
Fixes recently noted compile problems on alpha.
Diffstat (limited to 'graphics/aqsis/patches')
-rw-r--r-- | graphics/aqsis/patches/patch-af | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/graphics/aqsis/patches/patch-af b/graphics/aqsis/patches/patch-af new file mode 100644 index 00000000000..a1f941d95a6 --- /dev/null +++ b/graphics/aqsis/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.1 2003/03/15 12:24:22 dmcmahill Exp $ + +--- aqsis/aqsis.cpp.orig Wed May 8 12:01:31 2002 ++++ aqsis/aqsis.cpp Fri Mar 14 21:22:49 2003 +@@ -67,6 +67,6 @@ + RtVoid PrintProgress( RtFloat percent ) + { +-static long tick=0; +-long now; ++static time_t tick=0; ++time_t now; + + if (tick == 0) |