diff options
author | marcus <marcus@FreeBSD.org> | 2003-05-09 07:30:45 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-05-09 07:30:45 +0800 |
commit | 62c843897f7d6509b860c34943054e638507aa92 (patch) | |
tree | 9c898062adf162329100ccc91f26a7921834f966 /devel | |
parent | 56c5e4dff48e191996d699cde4762ac951aa3983 (diff) | |
download | freebsd-ports-gnome-62c843897f7d6509b860c34943054e638507aa92.tar.gz freebsd-ports-gnome-62c843897f7d6509b860c34943054e638507aa92.tar.zst freebsd-ports-gnome-62c843897f7d6509b860c34943054e638507aa92.zip |
Fix build on Alpha.
Reported by: bento
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libsoup/files/patch-libsoup_soup_message.c | 20 | ||||
-rw-r--r-- | devel/libsoup22/files/patch-libsoup_soup_message.c | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/devel/libsoup/files/patch-libsoup_soup_message.c b/devel/libsoup/files/patch-libsoup_soup_message.c new file mode 100644 index 000000000000..3d1245dfd746 --- /dev/null +++ b/devel/libsoup/files/patch-libsoup_soup_message.c @@ -0,0 +1,20 @@ +--- libsoup/soup-message.c.orig Thu May 8 19:27:40 2003 ++++ libsoup/soup-message.c Thu May 8 19:28:56 2003 +@@ -877,7 +877,7 @@ + + SoupHandlerKind kind; + union { +- guint errorcode; ++ unsigned long errorcode; + SoupErrorClass errorclass; + const gchar *header; + } data; +@@ -892,7 +892,7 @@ + redirect_handler, + NULL, + RESPONSE_HEADER_HANDLER, +- { (guint) "Location" } ++ { (unsigned long) "Location" } + }, + /* + * Handle authorization. diff --git a/devel/libsoup22/files/patch-libsoup_soup_message.c b/devel/libsoup22/files/patch-libsoup_soup_message.c new file mode 100644 index 000000000000..3d1245dfd746 --- /dev/null +++ b/devel/libsoup22/files/patch-libsoup_soup_message.c @@ -0,0 +1,20 @@ +--- libsoup/soup-message.c.orig Thu May 8 19:27:40 2003 ++++ libsoup/soup-message.c Thu May 8 19:28:56 2003 +@@ -877,7 +877,7 @@ + + SoupHandlerKind kind; + union { +- guint errorcode; ++ unsigned long errorcode; + SoupErrorClass errorclass; + const gchar *header; + } data; +@@ -892,7 +892,7 @@ + redirect_handler, + NULL, + RESPONSE_HEADER_HANDLER, +- { (guint) "Location" } ++ { (unsigned long) "Location" } + }, + /* + * Handle authorization. |