- Fixed the build on systems lacking openat() - Translation updates - gnome-xkb-info: Fix some layouts not being associated to a locale - gnome-rr: Add missing introspection annotations - wall-clock: Add ref-tests for clock output - wall-clock: Always use the ratio character (#726232) - gnome-rr: Output the EDID vendor/product info as well - gnome-rr: Add backlight output in debug - thumbnailer: Try harder to create a failed thumbnail (#728775) - Fix the build on OpenBSD - gnome-rr: Improve debug output - gnome-rr: Actually define output_get_possible_crtcs (#727034) - gnome-rr: Initialize GnomeRROutputInfo:rotation to GNOME_RR_ROTATION_0 (#727023) - Always set the DPMS mode when requested - gnome-xkb-info: Remove xkbfile dependency (#719942) - API and ABI break - gnome-xkb-info: Apply main layout locale metadata to variants (#711291) - wall-clock: Replace ratio with colon on non-UTF-8 locales (#722664) - more new gnome-rr api - drop using glibc internal headers - docs for thumbnailers - idle monitor fixes - use newer libgsystem internally - gnome-rr: Improve debug output - Add gnome_rr_output_get_min_backlight_step() API
15 lines
547 B
Text
15 lines
547 B
Text
$NetBSD: patch-aa,v 1.5 2014/11/08 23:15:06 prlw1 Exp $
|
|
|
|
allow 64-bit time_t on 32-bit system
|
|
|
|
--- libgnome-desktop/gnome-desktop-thumbnail.c.orig 2013-11-21 11:14:44.000000000 +0000
|
|
+++ libgnome-desktop/gnome-desktop-thumbnail.c
|
|
@@ -1666,7 +1670,7 @@ gnome_desktop_thumbnail_is_valid (GdkPix
|
|
thumb_mtime_str = gdk_pixbuf_get_option (pixbuf, "tEXt::Thumb::MTime");
|
|
if (!thumb_mtime_str)
|
|
return FALSE;
|
|
- thumb_mtime = atol (thumb_mtime_str);
|
|
+ thumb_mtime = atoll (thumb_mtime_str);
|
|
if (mtime != thumb_mtime)
|
|
return FALSE;
|
|
|