summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarinus Schraal <foser@gentoo.org>2005-04-17 21:42:18 +0000
committerMarinus Schraal <foser@gentoo.org>2005-04-17 21:42:18 +0000
commitea0d2bddf14c0a256d57ee60a05b18b6a71669ac (patch)
treef17f4854cf57fbcfd18b40fd67c6feb861f11e6a /net-libs/soup/files
parentFixed pvm configure pathing logic for sparc. (diff)
downloadgentoo-2-ea0d2bddf14c0a256d57ee60a05b18b6a71669ac.tar.gz
gentoo-2-ea0d2bddf14c0a256d57ee60a05b18b6a71669ac.tar.bz2
gentoo-2-ea0d2bddf14c0a256d57ee60a05b18b6a71669ac.zip
add gcc3 fix
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-libs/soup/files')
-rw-r--r--net-libs/soup/files/digest-soup-0.7.101
-rw-r--r--net-libs/soup/files/digest-soup-0.7.4-r11
-rw-r--r--net-libs/soup/files/soup-0.7.11-gcc3.patch96
3 files changed, 96 insertions, 2 deletions
diff --git a/net-libs/soup/files/digest-soup-0.7.10 b/net-libs/soup/files/digest-soup-0.7.10
deleted file mode 100644
index 571d421e3d3f..000000000000
--- a/net-libs/soup/files/digest-soup-0.7.10
+++ /dev/null
@@ -1 +0,0 @@
-MD5 baf1ecd6e14ca50544ce889ba363a9be soup-0.7.10.tar.bz2 303967
diff --git a/net-libs/soup/files/digest-soup-0.7.4-r1 b/net-libs/soup/files/digest-soup-0.7.4-r1
deleted file mode 100644
index 3fe03db237c2..000000000000
--- a/net-libs/soup/files/digest-soup-0.7.4-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 848ccf5e7616cd897593bab72bbc9b5a soup-0.7.4.tar.bz2 309489
diff --git a/net-libs/soup/files/soup-0.7.11-gcc3.patch b/net-libs/soup/files/soup-0.7.11-gcc3.patch
new file mode 100644
index 000000000000..615cae01d002
--- /dev/null
+++ b/net-libs/soup/files/soup-0.7.11-gcc3.patch
@@ -0,0 +1,96 @@
+diff -ur soup-0.7.11.orig/src/libwsdl/wsdl-soap-memory.c soup-0.7.11/src/libwsdl/wsdl-soap-memory.c
+--- soup-0.7.11.orig/src/libwsdl/wsdl-soap-memory.c 2001-08-27 03:38:53.000000000 +0200
++++ soup-0.7.11/src/libwsdl/wsdl-soap-memory.c 2004-10-27 15:05:10.557844265 +0200
+@@ -33,14 +33,14 @@
+
+ while (param->name != NULL) {
+ if (param->typecode == NULL) {
+- g_warning (G_GNUC_FUNCTION
+- ": Parameter %s has no typecode!",
+- param->name);
++ g_warning ("%s: Parameter %s has no typecode!",
++ G_GNUC_FUNCTION,
++ param->name);
+ } else {
+ if (param->param == NULL) {
+- g_warning (G_GNUC_FUNCTION
+- ": Parameter %s has no "
++ g_warning ("%s: Parameter %s has no "
+ "memory location!",
++ G_GNUC_FUNCTION,
+ param->name);
+ } else {
+ memset (param->param,
+@@ -71,9 +71,9 @@
+
+ while (param->name != NULL) {
+ if (param->typecode == NULL) {
+- g_warning (G_GNUC_FUNCTION
+- ": Parameter %s has no typecode!",
+- param->name);
++ g_warning ("%s: Parameter %s has no typecode!",
++ G_GNUC_FUNCTION,
++ param->name);
+ } else {
+ if (param->param != NULL &&
+ *(guchar **) param->param != NULL &&
+diff -ur soup-0.7.11.orig/src/libwsdl/wsdl-soap-parse.c soup-0.7.11/src/libwsdl/wsdl-soap-parse.c
+--- soup-0.7.11.orig/src/libwsdl/wsdl-soap-parse.c 2002-05-03 22:14:27.000000000 +0200
++++ soup-0.7.11/src/libwsdl/wsdl-soap-parse.c 2004-10-27 15:02:04.000000000 +0200
+@@ -37,7 +37,7 @@
+
+ switch (wsdl_typecode_kind (typecode)) {
+ case WSDL_TK_GLIB_NULL:
+- g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
++ g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
+ break;
+
+ case WSDL_TK_GLIB_VOID:
+@@ -203,7 +203,7 @@
+ /* Handled elsewhere */
+ break;
+ case WSDL_TK_GLIB_MAX:
+- g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
++ g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
+ break;
+ }
+ }
+diff -ur soup-0.7.11.orig/src/libwsdl/wsdl-typecodes.c soup-0.7.11/src/libwsdl/wsdl-typecodes.c
+--- soup-0.7.11.orig/src/libwsdl/wsdl-typecodes.c 2002-04-05 22:46:30.000000000 +0200
++++ soup-0.7.11/src/libwsdl/wsdl-typecodes.c 2004-10-27 15:01:13.000000000 +0200
+@@ -977,7 +977,7 @@
+ {
+ switch (tc->kind) {
+ case WSDL_TK_GLIB_NULL:
+- g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
++ g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
+ return (0);
+ break;
+
+@@ -1082,7 +1082,7 @@
+ break;
+
+ case WSDL_TK_GLIB_MAX:
+- g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
++ g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
+ return (0);
+ break;
+ }
+@@ -1106,7 +1106,7 @@
+ {
+ switch (tc->kind) {
+ case WSDL_TK_GLIB_NULL:
+- g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
++ g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
+ return (0);
+ break;
+
+@@ -1218,7 +1218,7 @@
+ break;
+
+ case WSDL_TK_GLIB_MAX:
+- g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
++ g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
+ return (0);
+ break;
+ }