diff options
author | demon <demon@FreeBSD.org> | 2009-11-26 20:10:25 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2009-11-26 20:10:25 +0800 |
commit | fa5067dfb8dfe89be23aca1209b3c9897227144a (patch) | |
tree | 0dedc17a4ef723352fd5b0ddba2f6e3f7bfd3784 /graphics | |
parent | 42dfe10596c4c7255ec39d0c93d75bed22a139d1 (diff) | |
download | freebsd-ports-gnome-fa5067dfb8dfe89be23aca1209b3c9897227144a.tar.gz freebsd-ports-gnome-fa5067dfb8dfe89be23aca1209b3c9897227144a.tar.zst freebsd-ports-gnome-fa5067dfb8dfe89be23aca1209b3c9897227144a.zip |
Use correct type for storing timestamps.
Should fix i386 build (untested), still unclear why it fails on i386 only.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gource/files/patch-src-commitlog.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphics/gource/files/patch-src-commitlog.h b/graphics/gource/files/patch-src-commitlog.h new file mode 100644 index 000000000000..60f9e0a61ab7 --- /dev/null +++ b/graphics/gource/files/patch-src-commitlog.h @@ -0,0 +1,11 @@ +--- src/commitlog.h.orig 2009-11-25 05:29:14.000000000 +0300 ++++ src/commitlog.h 2009-11-26 15:06:52.000000000 +0300 +@@ -42,7 +42,7 @@ public: + class RCommit { + vec3f fileColour(std::string filename); + public: +- long timestamp; ++ time_t timestamp; + std::string username; + + std::list<RCommitFile> files; |