diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-01 10:48:12 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-03-01 10:48:12 +0800 |
commit | 6215741455af5aa7e4132eea06dc135ef63fe98f (patch) | |
tree | b75e4757cd3d9b76a9d8d6195734f58b94562358 | |
parent | df73d03687dc121885f4dfa835f12c048d130cdc (diff) | |
download | marcuscom-ports-6215741455af5aa7e4132eea06dc135ef63fe98f.tar marcuscom-ports-6215741455af5aa7e4132eea06dc135ef63fe98f.tar.gz marcuscom-ports-6215741455af5aa7e4132eea06dc135ef63fe98f.tar.bz2 marcuscom-ports-6215741455af5aa7e4132eea06dc135ef63fe98f.tar.lz marcuscom-ports-6215741455af5aa7e4132eea06dc135ef63fe98f.tar.xz marcuscom-ports-6215741455af5aa7e4132eea06dc135ef63fe98f.tar.zst marcuscom-ports-6215741455af5aa7e4132eea06dc135ef63fe98f.zip |
Add x-gzip to the list of gzip encoded websites.
This fixes cvsweb.freebsd.org.
Code supplied by marcus@
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13740 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | devel/libsoup/Makefile | 4 | ||||
-rw-r--r-- | devel/libsoup/files/patch-soup_soup-content-decoder.c | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/devel/libsoup/Makefile b/devel/libsoup/Makefile index c59b9db88..5aeae7e67 100644 --- a/devel/libsoup/Makefile +++ b/devel/libsoup/Makefile @@ -3,12 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/devel/libsoup/Makefile,v 1.77 2010/02/10 14:15:23 avl Exp $ +# $MCom: ports/devel/libsoup/Makefile,v 1.78 2010/02/24 00:18:28 ahze Exp $ # PORTNAME= libsoup PORTVERSION= 2.29.91 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff --git a/devel/libsoup/files/patch-soup_soup-content-decoder.c b/devel/libsoup/files/patch-soup_soup-content-decoder.c new file mode 100644 index 000000000..1643896f0 --- /dev/null +++ b/devel/libsoup/files/patch-soup_soup-content-decoder.c @@ -0,0 +1,11 @@ +--- libsoup/soup-content-decoder.c.orig 2010-03-01 03:11:09.000000000 +0100 ++++ libsoup/soup-content-decoder.c 2010-03-01 03:13:01.000000000 +0100 +@@ -76,6 +76,8 @@ soup_content_decoder_init (SoupContentDe + /* Hardcoded for now */ + g_hash_table_insert (decoder->priv->codings, "gzip", + GSIZE_TO_POINTER (SOUP_TYPE_CODING_GZIP)); ++ g_hash_table_insert (decoder->priv->codings, "x-gzip", ++ GSIZE_TO_POINTER (SOUP_TYPE_CODING_GZIP)); + } + + static void |