]> git.pld-linux.org Git - packages/geeqie.git/blame - x32.patch
- fix build on x32
[packages/geeqie.git] / x32.patch
CommitLineData
78f116f5
JR
1--- geeqie-1.4/src/thumb_standard.c~ 2017-12-31 13:31:21.000000000 +0100
2+++ geeqie-1.4/src/thumb_standard.c 2019-02-13 00:06:19.836517723 +0100
3@@ -348,7 +348,11 @@
4 mark_uri = (tl->cache_local) ? tl->local_uri :tl->thumb_uri;
5
6 mark_app = g_strdup_printf("%s %s", GQ_APPNAME, VERSION);
7+#ifdef __ILP32__
8+ mark_mtime = g_strdup_printf("%llu", tl->source_mtime);
9+#else
10 mark_mtime = g_strdup_printf("%lu", tl->source_mtime);
11+#endif
12
13 pathl = path_from_utf8(tmp_path);
14 success = gdk_pixbuf_save(pixbuf, pathl, "png", NULL,
This page took 0.087717 seconds and 4 git commands to generate.