[Pkg-xfce-commits] r9229 - in /goodies/trunk/xfce4-places-plugin/debian: changelog patches/fix-ftbfs-gcc5.patch patches/series
Mateusz Łukasik
mati75-guest at moszumanska.debian.org
Sun Jun 28 12:42:57 UTC 2015
Author: mati75-guest
Date: Sun Jun 28 12:42:57 2015
New Revision: 9229
URL: http://svn.debian.org/wsvn/pkg-xfce/?sc=1&rev=9229
Log:
Add debian/patches/fix-ftbfs-gcc5.patch to fix FTBFS with gcc-5. (Closes: #778182)
Added:
goodies/trunk/xfce4-places-plugin/debian/patches/fix-ftbfs-gcc5.patch
goodies/trunk/xfce4-places-plugin/debian/patches/series
Modified:
goodies/trunk/xfce4-places-plugin/debian/changelog
Modified: goodies/trunk/xfce4-places-plugin/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-places-plugin/debian/changelog?rev=9229&op=diff
==============================================================================
--- goodies/trunk/xfce4-places-plugin/debian/changelog (original)
+++ goodies/trunk/xfce4-places-plugin/debian/changelog Sun Jun 28 12:42:57 2015
@@ -1,3 +1,10 @@
+xfce4-places-plugin (1.7.0-3) UNRELEASED; urgency=medium
+
+ * Add debian/patches/fix-ftbfs-gcc5.patch to fix FTBFS with gcc-5.
+ (Closes: #778182)
+
+ -- Mateusz Åukasik <mati75 at linuxmint.pl> Sun, 28 Jun 2015 14:42:13 +0200
+
xfce4-places-plugin (1.7.0-2) unstable; urgency=medium
* Upload to unstable.
Added: goodies/trunk/xfce4-places-plugin/debian/patches/fix-ftbfs-gcc5.patch
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-places-plugin/debian/patches/fix-ftbfs-gcc5.patch?rev=9229&op=file
==============================================================================
--- goodies/trunk/xfce4-places-plugin/debian/patches/fix-ftbfs-gcc5.patch (added)
+++ goodies/trunk/xfce4-places-plugin/debian/patches/fix-ftbfs-gcc5.patch Sun Jun 28 12:42:57 2015
@@ -0,0 +1,59 @@
+Description: Fix FTBFS with build on gcc-5.
+Author: Shivaji Sathe
+Bug-Debian: https://bugs.debian.org/778182
+
+diff --git a/panel-plugin/model.h b/panel-plugin/model.h
+index 06d9d6f..043e391 100644
+--- a/panel-plugin/model.h
++++ b/panel-plugin/model.h
+@@ -36,13 +36,13 @@ struct _PlacesBookmarkAction
+ void (*finalize) (PlacesBookmarkAction *self);
+ };
+
+-inline PlacesBookmarkAction*
++extern inline PlacesBookmarkAction*
+ places_bookmark_action_create(gchar *label);
+
+-inline void
++extern inline void
+ places_bookmark_action_destroy(PlacesBookmarkAction*);
+
+-inline void
++extern inline void
+ places_bookmark_action_call(PlacesBookmarkAction*);
+
+ /* Places Bookmark */
+@@ -70,10 +70,10 @@ struct _PlacesBookmark
+ void (*finalize) (PlacesBookmark *self);
+ };
+
+-inline PlacesBookmark*
++extern inline PlacesBookmark*
+ places_bookmark_create(gchar *label);
+
+-inline void
++extern inline void
+ places_bookmark_destroy(PlacesBookmark *bookmark);
+
+ /* Places Bookmark Group */
+@@ -86,16 +86,16 @@ struct _PlacesBookmarkGroup
+ gpointer priv;
+ };
+
+-inline GList*
++extern inline GList*
+ places_bookmark_group_get_bookmarks(PlacesBookmarkGroup*);
+
+-inline gboolean
++extern inline gboolean
+ places_bookmark_group_changed(PlacesBookmarkGroup*);
+
+-inline PlacesBookmarkGroup*
++extern inline PlacesBookmarkGroup*
+ places_bookmark_group_create();
+
+-inline void
++extern inline void
+ places_bookmark_group_destroy(PlacesBookmarkGroup*);
+
+ #endif
Added: goodies/trunk/xfce4-places-plugin/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-xfce/goodies/trunk/xfce4-places-plugin/debian/patches/series?rev=9229&op=file
==============================================================================
--- goodies/trunk/xfce4-places-plugin/debian/patches/series (added)
+++ goodies/trunk/xfce4-places-plugin/debian/patches/series Sun Jun 28 12:42:57 2015
@@ -0,0 +1 @@
+fix-ftbfs-gcc5.patch
More information about the Pkg-xfce-commits
mailing list