diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2009-11-26 12:10:25 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2009-11-26 12:10:25 +0000 |
commit | f00d54a3df130e95ba782a08a85d590ea2493fb3 (patch) | |
tree | 8a2e4b6b1738d21a692f0e94b672f39fbfb1780c | |
parent | Unbreak libgda4-jdbc. Specify a list of jdk's we want instead of just using U... (diff) |
Use correct type for storing timestamps.
Should fix i386 build (untested), still unclear why it fails on i386 only.
Notes
Notes:
svn path=/head/; revision=244767
-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; |