Hello community,

here is the log from the commit of package blender for openSUSE:Factory checked 
in at 2014-12-23 11:51:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/blender (Old)
 and      /work/SRC/openSUSE:Factory/.blender.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "blender"

Changes:
--------
--- /work/SRC/openSUSE:Factory/blender/blender.changes  2014-11-24 
11:19:18.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.blender.new/blender.changes     2014-12-23 
11:49:48.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Dec 22 15:37:02 UTC 2014 - [email protected]
+
+- Add blender-freetype-2.5.4.patch: Silence warnings when building
+  against freetype 2.5.4 (which has a structure change on FT_Bitmap).
+
+-------------------------------------------------------------------

New:
----
  blender-freetype-2.5.4.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ blender.spec ++++++
--- /var/tmp/diff_new_pack.izbRHx/_old  2014-12-23 11:49:49.000000000 +0100
+++ /var/tmp/diff_new_pack.izbRHx/_new  2014-12-23 11:49:49.000000000 +0100
@@ -46,6 +46,8 @@
 Source8:        blender-getversion.py
 # Refreshed for 2.67b
 Patch1:         blender-2.58-python_include.patch
+# Silence warnings when building against freetype 2.5.4
+Patch2:         blender-freetype-2.5.4.patch
 BuildRequires:  gettext-tools
 %if 0%{?suse_version} > 1210
 BuildRequires:  libGLw-devel
@@ -152,6 +154,7 @@
 %prep
 %setup -q
 %patch1
+%patch2 -p1
 
 %if %DISTRIBUTABLE == 1
 rm -rf release/scripts/presets/ffmpeg


++++++ blender-freetype-2.5.4.patch ++++++
Index: blender-2.72b/source/blender/blenfont/intern/blf_glyph.c
===================================================================
--- blender-2.72b.orig/source/blender/blenfont/intern/blf_glyph.c
+++ blender-2.72b/source/blender/blenfont/intern/blf_glyph.c
@@ -262,8 +262,8 @@ GlyphBLF *blf_glyph_add(FontBLF *font, u
        g->xoff = -1;
        g->yoff = -1;
        bitmap = slot->bitmap;
-       g->width = bitmap.width;
-       g->height = bitmap.rows;
+       g->width = (int)bitmap.width;
+       g->height = (int)bitmap.rows;
 
        if (g->width && g->height) {
                if (sharp) {

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to