Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnome-extra/gpointing-device-settings/files: gpointing-device-settings-1.5.1-gsd-3.2-fix.patch
Date: Sat, 03 Mar 2012 16:04:19
Message-Id: 20120303160410.955DC2004B@flycatcher.gentoo.org
1 slyfox 12/03/03 16:04:10
2
3 Added: gpointing-device-settings-1.5.1-gsd-3.2-fix.patch
4 Log:
5 Fixed build failure aginst gnome-base/gnome-settings-daemon-3.2.2 (undefined gsd_pointing_device_plugin_class_finalize); bug #384001 by Allan Gottlieb and others. Patch provided by battle.jerboa@×××××.com.
6
7 (Portage version: 2.2.0_alpha89_p3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 gnome-extra/gpointing-device-settings/files/gpointing-device-settings-1.5.1-gsd-3.2-fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gpointing-device-settings/files/gpointing-device-settings-1.5.1-gsd-3.2-fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnome-extra/gpointing-device-settings/files/gpointing-device-settings-1.5.1-gsd-3.2-fix.patch?rev=1.1&content-type=text/plain
14
15 Index: gpointing-device-settings-1.5.1-gsd-3.2-fix.patch
16 ===================================================================
17 Fixes build failnure on gnome-base/gnome-settings-daemon-3.2.2
18
19 gsd-pointing-device-plugin.c:59:1: warning: 'gsd_pointing_device_plugin_class_finalize' used but never defined [enabled by default]
20 CCLD libpointing-device.la
21 ld: .libs/libpointing_device_la-gsd-pointing-device-plugin.o: relocation R_X86_64_PC32 against undefined symbol `gsd_pointing_device_plugin_class_finalize'
22
23 Gentoo-bug: http://bugs.gentoo.org/384001
24 Patch-by: battle.jerboa@×××××.com
25 --- a/modules/gnome-settings-daemon-plugins/gsd-pointing-device-plugin.c 2012-02-02 13:32:20.000000000 +0400
26 +++ b/modules/gnome-settings-daemon-plugins/gsd-pointing-device-plugin.c 2012-02-02 13:32:04.000000000 +0400
27 @@ -214,6 +214,11 @@
28 plugin_class->activate = activate;
29 plugin_class->deactivate = deactivate;
30 }
31 +
32 +static void
33 +gsd_pointing_device_plugin_class_finalize (GsdPointingDevicePluginClass *klass)
34 +{
35 +}
36 /*
37 vi:ts=4:nowrap:ai:expandtab:sw=4
38 */