aboutsummaryrefslogtreecommitdiff
path: root/print/libgnomeprint/files
diff options
context:
space:
mode:
Diffstat (limited to 'print/libgnomeprint/files')
-rw-r--r--print/libgnomeprint/files/patch-gnome-print-cups-transport.c21
-rw-r--r--print/libgnomeprint/files/patch-libgnomeprint_gnome-font-face.c12
-rw-r--r--print/libgnomeprint/files/patch-libgnomeprint_gnome-rfont.c14
-rw-r--r--print/libgnomeprint/files/patch-libgnomeprint_grammar.y37
4 files changed, 0 insertions, 84 deletions
diff --git a/print/libgnomeprint/files/patch-gnome-print-cups-transport.c b/print/libgnomeprint/files/patch-gnome-print-cups-transport.c
deleted file mode 100644
index 8aabdfb65d2a..000000000000
--- a/print/libgnomeprint/files/patch-gnome-print-cups-transport.c
+++ /dev/null
@@ -1,21 +0,0 @@
-=========================
-commit 9b82b7e75b83395e7c5692085e1934202cf7f65f
-Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
-Date: Wed Oct 12 17:08:59 2011 +0200
-
- Add missing include
-
- https://bugzilla.gnome.org/show_bug.cgi?id=653388
-
-=========================
-
---- libgnomeprint/modules/cups/gnome-print-cups-transport.c.orig 2010-02-09 05:32:51.000000000 -0700
-+++ libgnomeprint/modules/cups/gnome-print-cups-transport.c 2011-10-13 08:27:55.000000000 -0600
-@@ -34,6 +34,7 @@
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
-+#include <stdio.h>
- #include <unistd.h>
- #include <locale.h>
-
diff --git a/print/libgnomeprint/files/patch-libgnomeprint_gnome-font-face.c b/print/libgnomeprint/files/patch-libgnomeprint_gnome-font-face.c
deleted file mode 100644
index a5888bb74283..000000000000
--- a/print/libgnomeprint/files/patch-libgnomeprint_gnome-font-face.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- libgnomeprint/gnome-font-face.c.orig 2013-12-06 19:26:26.000000000 +0100
-+++ libgnomeprint/gnome-font-face.c 2013-12-06 19:27:43.000000000 +0100
-@@ -36,7 +36,8 @@
- #include <stdarg.h>
- #include <locale.h>
-
--#include <freetype/ftoutln.h>
-+#include <ft2build.h>
-+#include FT_OUTLINE_H
-
- #include <libgnomeprint/gnome-print-private.h>
- #include <libgnomeprint/gnome-font-private.h>
diff --git a/print/libgnomeprint/files/patch-libgnomeprint_gnome-rfont.c b/print/libgnomeprint/files/patch-libgnomeprint_gnome-rfont.c
deleted file mode 100644
index 22e1c1c9ab56..000000000000
--- a/print/libgnomeprint/files/patch-libgnomeprint_gnome-rfont.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- libgnomeprint/gnome-rfont.c.orig 2013-12-06 19:28:40.000000000 +0100
-+++ libgnomeprint/gnome-rfont.c 2013-12-06 19:29:56.000000000 +0100
-@@ -27,9 +27,8 @@
- #include <string.h>
-
- #include <ft2build.h>
--#include FT_FREETYPE_H
--#include <freetype/ftglyph.h>
--#include <freetype/ftbbox.h>
-+#include FT_GLYPH_H
-+#include FT_BBOX_H
- #include <libart_lgpl/art_misc.h>
- #include <libart_lgpl/art_affine.h>
- #include <libart_lgpl/art_vpath.h>
diff --git a/print/libgnomeprint/files/patch-libgnomeprint_grammar.y b/print/libgnomeprint/files/patch-libgnomeprint_grammar.y
deleted file mode 100644
index 5d24866f7a5f..000000000000
--- a/print/libgnomeprint/files/patch-libgnomeprint_grammar.y
+++ /dev/null
@@ -1,37 +0,0 @@
---- libgnomeprint/grammar.y.orig 2010-02-09 12:32:51 UTC
-+++ libgnomeprint/grammar.y
-@@ -6,8 +6,6 @@
- #include <libgnomeprint/types.h>
- #include <libgnomeprint/gnome-print-filter.h>
-
--#define YYPARSE_PARAM graph
--
- static void
- set_value_from_string (GParamSpec *pspec, GValue *v, const gchar *s)
- {
-@@ -99,7 +97,7 @@ gnome_print_filter_parse_prop (GnomePrin
- }
-
- static int yylex (void *lvalp);
--static int yyerror (const char *s);
-+static int yyerror (graph_t *g, const char *s);
- %}
-
- %union {
-@@ -117,6 +115,7 @@ static int yyerror (const char *s);
- %type <p> pool
-
- %pure_parser
-+%parse-param { graph_t *graph }
-
- %start graph
- %%
-@@ -185,7 +184,7 @@ graph: filter {
- %%
-
- static int
--yyerror (const char *s)
-+yyerror (graph_t *g, const char *s)
- {
- return -1;
- }