summaryrefslogtreecommitdiff
path: root/openembedded/packages/gtkhtml2/files/fix-background-none.patch
diff options
context:
space:
mode:
authorChris Lord <chris@openedhand.com>2006-02-07 04:22:50 +0000
committerChris Lord <chris@openedhand.com>2006-02-07 04:22:50 +0000
commit4fbba6350edd17d9272a668b5ba564f558974a94 (patch)
treedafc821fd7b7d4ec5e08966b6ac479f50f94e5df /openembedded/packages/gtkhtml2/files/fix-background-none.patch
parentef60244cc4a28777efdaed9260e8c7ae4872e2b1 (diff)
downloadopenembedded-core-4fbba6350edd17d9272a668b5ba564f558974a94.tar.gz
openembedded-core-4fbba6350edd17d9272a668b5ba564f558974a94.tar.bz2
openembedded-core-4fbba6350edd17d9272a668b5ba564f558974a94.tar.xz
openembedded-core-4fbba6350edd17d9272a668b5ba564f558974a94.zip
Add curl (new dependency of Web), fix a fontconfig-native build issue,
update gtkhtml2 patches and update to a newer more functional Web snapshot git-svn-id: https://svn.o-hand.com/repos/poky@251 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/gtkhtml2/files/fix-background-none.patch')
-rw-r--r--openembedded/packages/gtkhtml2/files/fix-background-none.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/openembedded/packages/gtkhtml2/files/fix-background-none.patch b/openembedded/packages/gtkhtml2/files/fix-background-none.patch
deleted file mode 100644
index 076f31200..000000000
--- a/openembedded/packages/gtkhtml2/files/fix-background-none.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-Index: gtkhtml2/libgtkhtml/css/cssmatcher.c
-===================================================================
---- gtkhtml2.orig/libgtkhtml/css/cssmatcher.c 2006-01-21 01:02:23.000000000 +0000
-+++ gtkhtml2/libgtkhtml/css/cssmatcher.c 2006-01-25 02:07:44.000000000 +0000
-@@ -596,7 +596,13 @@
- g_object_unref (G_OBJECT(image));
- return TRUE;
- }
-- }
-+ } else if (val->value_type == CSS_IDENT &&
-+ val->v.atom == HTML_ATOM_NONE) {
-+ if (style->background->image) {
-+ g_object_unref (style->background->image);
-+ style->background->image = NULL;
-+ }
-+ }
- return FALSE;
- }
-
-@@ -1256,7 +1262,10 @@
- }
- else if (val->value_type == CSS_FUNCTION)
- handle_background_image (document, style, val);
-- else if (css_parse_color (val, &color))
-+ else if (val->value_type == CSS_IDENT && val->v.atom == HTML_ATOM_NONE) {
-+ handle_background_image (document, style, val);
-+ style->background->color.transparent = TRUE;
-+ } else if (css_parse_color (val, &color))
- html_style_set_background_color (style, &color);
-
- break;
-@@ -1273,6 +1282,8 @@
-
- if (val->v.atom == HTML_ATOM_INHERIT)
- html_style_set_background_color (style, &parent_style->background->color);
-+ else if (val->v.atom == HTML_ATOM_NONE)
-+ style->background->color.transparent = TRUE;
- else if (css_parse_color (val, &color))
- html_style_set_background_color (style, &color);
- break;