mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
Fix the build with GCC 4.1, took from Gentoo's files/soup-0.7.11-gcc41.patch.
Reported by: krismail
This commit is contained in:
parent
4a338dff1e
commit
5fac53d34c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=179819
22
devel/soup/files/patch-soup-0.7.11-gcc41
Normal file
22
devel/soup/files/patch-soup-0.7.11-gcc41
Normal file
@ -0,0 +1,22 @@
|
||||
--- src/libsoup/soup-queue.c.orig 2006-08-01 15:14:39.000000000 -0400
|
||||
+++ src/libsoup/soup-queue.c 2006-08-01 15:14:50.000000000 -0400
|
||||
@@ -30,7 +30,7 @@
|
||||
#include "soup-ssl.h"
|
||||
#include "soup-transfer.h"
|
||||
|
||||
-static GSList *soup_active_requests = NULL, *soup_active_request_next = NULL;
|
||||
+GSList *soup_active_requests = NULL, *soup_active_request_next = NULL;
|
||||
|
||||
static guint soup_queue_idle_tag = 0;
|
||||
|
||||
--- src/libsoup/soup-server.c.orig 2006-08-01 15:20:33.000000000 -0400
|
||||
+++ src/libsoup/soup-server.c 2006-08-01 15:23:08.000000000 -0400
|
||||
@@ -312,7 +312,7 @@
|
||||
/*
|
||||
* Get request HTTP method
|
||||
*/
|
||||
- (gchar *) msg->method = g_strdup (g_getenv ("REQUEST_METHOD"));
|
||||
+ msg->method = g_strdup (g_getenv ("REQUEST_METHOD"));
|
||||
|
||||
/*
|
||||
* Get content length of request body
|
Loading…
Reference in New Issue
Block a user