r14370 - in /desktop/unstable/gtk+2.0/debian: changelog patches/094_directfb-deprecation-fixes.patch patches/series
lool at users.alioth.debian.org
lool at users.alioth.debian.org
Tue Jan 29 16:42:15 UTC 2008
Author: lool
Date: Tue Jan 29 16:42:15 2008
New Revision: 14370
URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=14370
Log:
- New patch, 094_directfb-deprecation-fixes, fixes directfb build with
GLib 2.15 deprecation of G_GNUC_FUNCTION in favor of G_STRLOC.
Added:
desktop/unstable/gtk+2.0/debian/patches/094_directfb-deprecation-fixes.patch
Modified:
desktop/unstable/gtk+2.0/debian/changelog
desktop/unstable/gtk+2.0/debian/patches/series
Modified: desktop/unstable/gtk+2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/changelog?rev=14370&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/changelog (original)
+++ desktop/unstable/gtk+2.0/debian/changelog Tue Jan 29 16:42:15 2008
@@ -8,6 +8,8 @@
- Refresh patches 033_treeview_resizing, 042_treeview_single-focus to
apply cleanly.
- Update relibtoolizing patch, 070_mandatory-relibtoolize
+ - New patch, 094_directfb-deprecation-fixes, fixes directfb build with
+ GLib 2.15 deprecation of G_GNUC_FUNCTION in favor of G_STRLOC.
* Fix ordering in series.
-- Loic Minier <lool at dooz.org> Mon, 21 Jan 2008 18:42:28 +0100
Added: desktop/unstable/gtk+2.0/debian/patches/094_directfb-deprecation-fixes.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/094_directfb-deprecation-fixes.patch?rev=14370&op=file
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/094_directfb-deprecation-fixes.patch (added)
+++ desktop/unstable/gtk+2.0/debian/patches/094_directfb-deprecation-fixes.patch Tue Jan 29 16:42:15 2008
@@ -1,0 +1,118 @@
+--- gtk+2.0-2.12.6.orig/gdk/directfb/gdkdrawable-directfb.c 2008-01-29 17:34:23.000000000 +0100
++++ gtk+2.0-2.12.6/gdk/directfb/gdkdrawable-directfb.c 2008-01-29 17:34:42.000000000 +0100
+@@ -477,7 +477,7 @@
+ gint angle1,
+ gint angle2)
+ {
+- WARN_UNIMPLEMENTED (G_GNUC_FUNCTION);
++ WARN_UNIMPLEMENTED (G_STRLOC);
+ }
+
+ static void
+@@ -561,7 +561,7 @@
+ const gchar *text,
+ gint text_length)
+ {
+- WARN_UNIMPLEMENTED (G_GNUC_FUNCTION);
++ WARN_UNIMPLEMENTED (G_STRLOC);
+ }
+
+ static void
+@@ -573,7 +573,7 @@
+ const GdkWChar *text,
+ gint text_length)
+ {
+- WARN_UNIMPLEMENTED (G_GNUC_FUNCTION);
++ WARN_UNIMPLEMENTED (G_STRLOC);
+ }
+
+ static void
+--- gtk+2.0-2.12.6.orig/gdk/directfb/gdkimage-directfb.c 2008-01-29 17:34:59.000000000 +0100
++++ gtk+2.0-2.12.6/gdk/directfb/gdkimage-directfb.c 2008-01-29 17:35:10.000000000 +0100
+@@ -151,7 +151,7 @@
+
+ GDK_NOTE (MISC, g_print ("gdk_image_new_bitmap: %dx%d\n", w, h));
+
+- g_message ("not fully implemented %s", G_GNUC_FUNCTION);
++ g_message ("not fully implemented %s", G_STRLOC);
+
+ image->bpl = (w + 7) / 8;
+ image->mem = g_malloc (image->bpl * h);
+@@ -209,7 +209,7 @@
+ format = DSPF_ARGB;
+ break;
+ default:
+- g_message ("unimplemented %s for depth %d", G_GNUC_FUNCTION, depth);
++ g_message ("unimplemented %s for depth %d", G_STRLOC, depth);
+ return NULL;
+ }
+
+--- gtk+2.0-2.12.6.orig/gdk/directfb/gdkinput-directfb.c 2008-01-29 17:35:30.000000000 +0100
++++ gtk+2.0-2.12.6/gdk/directfb/gdkinput-directfb.c 2008-01-29 17:35:38.000000000 +0100
+@@ -228,7 +228,7 @@
+ gdk_device_set_mode (GdkDevice *device,
+ GdkInputMode mode)
+ {
+- g_message ("unimplemented %s", G_GNUC_FUNCTION);
++ g_message ("unimplemented %s", G_STRLOC);
+
+ return FALSE;
+ }
+@@ -303,7 +303,7 @@
+ gint mask,
+ GdkExtensionMode mode)
+ {
+- g_message ("unimplemented %s", G_GNUC_FUNCTION);
++ g_message ("unimplemented %s", G_STRLOC);
+ }
+
+ GList *
+--- gtk+2.0-2.12.6.orig/gdk/directfb/gdkpixmap-directfb.c 2008-01-29 17:35:52.000000000 +0100
++++ gtk+2.0-2.12.6/gdk/directfb/gdkpixmap-directfb.c 2008-01-29 17:36:10.000000000 +0100
+@@ -172,7 +172,7 @@
+ format = DSPF_RGB32;
+ break;
+ default:
+- g_message ("unimplemented %s for depth %d", G_GNUC_FUNCTION, depth);
++ g_message ("unimplemented %s for depth %d", G_STRLOC, depth);
+ return NULL;
+ }
+ }
+--- gtk+2.0-2.12.6.orig/gdk/directfb/gdkwindow-directfb.c 2008-01-29 17:36:26.000000000 +0100
++++ gtk+2.0-2.12.6/gdk/directfb/gdkwindow-directfb.c 2008-01-29 17:36:36.000000000 +0100
+@@ -2411,7 +2411,7 @@
+ return;
+
+ /* N/A */
+- g_message("unimplemented %s", G_GNUC_FUNCTION);
++ g_message("unimplemented %s", G_STRLOC);
+ }
+
+ void
+@@ -2444,7 +2444,7 @@
+ return FALSE;
+
+ /* N/A */
+- g_message("unimplemented %s", G_GNUC_FUNCTION);
++ g_message("unimplemented %s", G_STRLOC);
+
+ return FALSE;
+ }
+@@ -2462,7 +2462,7 @@
+ if (GDK_WINDOW_DESTROYED (window))
+ return;
+
+- g_message("unimplemented %s", G_GNUC_FUNCTION);
++ g_message("unimplemented %s", G_STRLOC);
+ }
+
+ void
+@@ -2477,7 +2477,7 @@
+ if (GDK_WINDOW_DESTROYED (window))
+ return;
+
+- g_message("unimplemented %s", G_GNUC_FUNCTION);
++ g_message("unimplemented %s", G_STRLOC);
+ }
+
+ /**
Modified: desktop/unstable/gtk+2.0/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/series?rev=14370&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/series (original)
+++ desktop/unstable/gtk+2.0/debian/patches/series Tue Jan 29 16:42:15 2008
@@ -22,3 +22,4 @@
091_workaround_no_gtk_init_incorrect_display.patch
092_recentfiles-recursion-fix.patch
093_directfb-type-changes.patch
+094_directfb-deprecation-fixes.patch
More information about the pkg-gnome-commits
mailing list