diff options
author | demon <demon@FreeBSD.org> | 2009-11-27 17:40:34 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2009-11-27 17:40:34 +0800 |
commit | 3e67cfe7f0321af1a4a953f241a99c25003ecb3d (patch) | |
tree | efebee1da37a48b6716c208312644359fc7de7a3 /graphics/gource | |
parent | 01799001f1cdb6217ba45462645e79bf3c4030a9 (diff) | |
download | freebsd-ports-gnome-3e67cfe7f0321af1a4a953f241a99c25003ecb3d.tar.gz freebsd-ports-gnome-3e67cfe7f0321af1a4a953f241a99c25003ecb3d.tar.zst freebsd-ports-gnome-3e67cfe7f0321af1a4a953f241a99c25003ecb3d.zip |
Another patch to use time_t instead of long for storing timestamps.
Should fix i386 build.
Submitted by: till plewe <till.plewe@gmail.com>
Diffstat (limited to 'graphics/gource')
-rw-r--r-- | graphics/gource/files/patch-src-gource.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/gource/files/patch-src-gource.h b/graphics/gource/files/patch-src-gource.h new file mode 100644 index 000000000000..1a24684e3e04 --- /dev/null +++ b/graphics/gource/files/patch-src-gource.h @@ -0,0 +1,11 @@ +--- src/gource.h.orig 2009-11-25 05:29:14.000000000 +0300 ++++ src/gource.h 2009-11-27 12:35:43.000000000 +0300 +@@ -110,7 +110,7 @@ class Gource : public SDLApp { + int framecount; + + float runtime; +- long currtime; ++ time_t currtime; + float subseconds; + + float splash; |