• Skip to sidebar navigation
  • Skip to content

Bitbucket

  • More
    ProjectsRepositories
  • Help
    • Online help
    • Learn Git
    • Welcome to Bitbucket
    • Keyboard shortcuts
  • Log In
Alexander Dahl
  1. Alexander Dahl

buildroot

Public
Actions
  • Clone
  • Compare

Learn more about cloning repositories

You have read-only access

Navigation
  • Source
  • Commits
  • Branches
  • All Branches Graph
  • Forks
  1. Alexander Dahl
  2. buildroot

Source

buildroot/package/libgtk3/0004-Remove-Gdk-dependency-from-gtk-encode-symbolic-svg.patch
Gustavo ZacariasGustavo Zacarias committed 2d54567b60c21 Apr 2016
Raw file
Source viewDiff to previous
   stream = g_memory_input_stream_new_from_data (file_data, file_len, NULL);
 
1
From 4d09ff324419fe4e671233044e424378da53969b Mon Sep 17 00:00:00 2001
2
From: Jussi Kukkonen <jussi.kukkonen@intel.com>
3
Date: Tue, 9 Jun 2015 14:20:30 +0300
4
Subject: [PATCH] Remove Gdk-dependency from gtk-encode-symbolic-svg
5
​
6
Building gtk-encode-symbolic-svg without building Gdk is useful
7
as only the icon tools are needed on the native build: this makes
8
native build much faster and requires much less dependencies.
9
​
10
Upstream-Status: Pending
11
​
12
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
13
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
14
---
15
Patch status: taken from yocto, upstream pending
16
​
17
 gtk/encodesymbolic.c | 36 ++++++++++--------------------------
18
 1 file changed, 10 insertions(+), 26 deletions(-)
19
​
20
diff --git a/gtk/encodesymbolic.c b/gtk/encodesymbolic.c
21
index 9f7d015..1f07563 100644
22
--- a/gtk/encodesymbolic.c
23
+++ b/gtk/encodesymbolic.c
24
@@ -19,7 +19,6 @@
25
 
26
 #include <glib.h>
27
 #include <gdk-pixbuf/gdk-pixdata.h>
28
-#include <gdk/gdk.h>
29
 #include <glib/gi18n.h>
30
 
31
 #ifdef HAVE_UNISTD_H
32
@@ -43,30 +42,18 @@ static GdkPixbuf *
33
 load_symbolic_svg (char *file_data, gsize file_len,
34
                    int width,
35
                    int height,
36
-                   const GdkRGBA  *fg,
37
-                   const GdkRGBA  *success_color,
38
-                   const GdkRGBA  *warning_color,
39
-                   const GdkRGBA  *error_color,
40
+                   const char *css_fg,
41
+                   const char *css_success,
42
+                   const char *css_warning,
43
+                   const char *css_error,
44
                    GError        **error)
45
 {
46
   GInputStream *stream;
47
   GdkPixbuf *pixbuf;
48
-  gchar *css_fg;
49
-  gchar *css_success;
50
-  gchar *css_warning;
51
-  gchar *css_error;
52
   gchar *data;
53
   gchar *svg_width, *svg_height;
54
   gchar *escaped_file_data;
55
 
56
-  css_fg = gdk_rgba_to_string (fg);
57
-
58
-  css_success = css_warning = css_error = NULL;
59
-
60
-  css_warning = gdk_rgba_to_string (warning_color);
61
-  css_error = gdk_rgba_to_string (error_color);
62
-  css_success = gdk_rgba_to_string (success_color);
63
-
  • Git repository management for enterprise teams powered by Atlassian Bitbucket
  • Atlassian Bitbucket v6.7.2
  • Documentation
  • Request a feature
  • About
  • Contact Atlassian
Atlassian

Everything looks good. We'll let you know here if there's anything you should know about.