r39890 - in /desktop/experimental/cogl/debian: changelog patches/0001-Fix-build-on-big-endian.patch patches/series

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Mon Oct 14 19:32:54 UTC 2013


Author: pochu
Date: Mon Oct 14 19:32:54 2013
New Revision: 39890

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=39890
Log:
* debian/patches/0001-Fix-build-on-big-endian.patch:
  + New patch, fix the build on big endian ports.

Added:
    desktop/experimental/cogl/debian/patches/0001-Fix-build-on-big-endian.patch
Modified:
    desktop/experimental/cogl/debian/changelog
    desktop/experimental/cogl/debian/patches/series

Modified: desktop/experimental/cogl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/cogl/debian/changelog?rev=39890&op=diff
==============================================================================
--- desktop/experimental/cogl/debian/changelog	[utf-8] (original)
+++ desktop/experimental/cogl/debian/changelog	[utf-8] Mon Oct 14 19:32:54 2013
@@ -1,3 +1,10 @@
+cogl (1.16.0-3) UNRELEASED; urgency=low
+
+  * debian/patches/0001-Fix-build-on-big-endian.patch:
+    + New patch, fix the build on big endian ports.
+
+ -- Emilio Pozuelo Monfort <pochu at debian.org>  Mon, 14 Oct 2013 21:25:57 +0200
+
 cogl (1.16.0-2) experimental; urgency=low
 
   * debian/control.in:

Added: desktop/experimental/cogl/debian/patches/0001-Fix-build-on-big-endian.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/cogl/debian/patches/0001-Fix-build-on-big-endian.patch?rev=39890&op=file
==============================================================================
--- desktop/experimental/cogl/debian/patches/0001-Fix-build-on-big-endian.patch	(added)
+++ desktop/experimental/cogl/debian/patches/0001-Fix-build-on-big-endian.patch	[utf-8] Mon Oct 14 19:32:54 2013
@@ -0,0 +1,29 @@
+From f6d8c482584de22bbacc9dc21e6ffc34371c03ff Mon Sep 17 00:00:00 2001
+From: Emilio Pozuelo Monfort <pochu27 at gmail.com>
+Date: Mon, 14 Oct 2013 21:21:02 +0200
+Subject: [PATCH] Fix build on big endian
+
+Commit 50d1285b updated the wl_shm enum values but left
+one out. Update it to fix the build on big endian.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=710135
+---
+ cogl/cogl-texture-2d.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/cogl/cogl-texture-2d.c b/cogl/cogl-texture-2d.c
+index 4147746..60b932b 100644
+--- a/cogl/cogl-texture-2d.c
++++ b/cogl/cogl-texture-2d.c
+@@ -315,7 +315,7 @@ cogl_wayland_texture_2d_new_from_buffer (CoglContext *ctx,
+           case WL_SHM_FORMAT_ARGB8888:
+             format = COGL_PIXEL_FORMAT_ARGB_8888_PRE;
+             break;
+-          case WL_SHM_FORMAT_XRGB32:
++          case WL_SHM_FORMAT_XRGB8888:
+             format = COGL_PIXEL_FORMAT_ARGB_8888;
+             internal_format = COGL_PIXEL_FORMAT_RGB_888;
+             break;
+-- 
+1.8.4.rc3
+

Modified: desktop/experimental/cogl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/cogl/debian/patches/series?rev=39890&op=diff
==============================================================================
--- desktop/experimental/cogl/debian/patches/series	[utf-8] (original)
+++ desktop/experimental/cogl/debian/patches/series	[utf-8] Mon Oct 14 19:32:54 2013
@@ -0,0 +1 @@
+0001-Fix-build-on-big-ending.patch




More information about the pkg-gnome-commits mailing list