summaryrefslogtreecommitdiff
path: root/package/libglib12/glib-1.2.10-gcc34-fix.patch
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-08 01:51:36 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-08 01:51:36 +0000
commit8df304656c3482f01b8ea62cbbc1d8713ba22439 (patch)
treeb03606db7e30fd287fd96f6dcb680c0d23c35888 /package/libglib12/glib-1.2.10-gcc34-fix.patch
parent74862dcd6c7a506dcb5cc83a58d5649dd8612b15 (diff)
fix shared library building
Diffstat (limited to 'package/libglib12/glib-1.2.10-gcc34-fix.patch')
-rw-r--r--package/libglib12/glib-1.2.10-gcc34-fix.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/package/libglib12/glib-1.2.10-gcc34-fix.patch b/package/libglib12/glib-1.2.10-gcc34-fix.patch
new file mode 100644
index 000000000..1b896484d
--- /dev/null
+++ b/package/libglib12/glib-1.2.10-gcc34-fix.patch
@@ -0,0 +1,41 @@
+--- glib-1.2.10/gstrfuncs.c.orig 2001-02-27 07:00:22.000000000 +0100
++++ glib-1.2.10/gstrfuncs.c 2004-03-01 13:19:49.531603760 +0100
+@@ -867,7 +867,7 @@
+ /* beware of positional parameters
+ */
+ case '$':
+- g_warning (G_GNUC_PRETTY_FUNCTION
++ g_warning ("%s%s", G_GNUC_PRETTY_FUNCTION,
+ "(): unable to handle positional parameters (%%n$)");
+ len += 1024; /* try adding some safety padding */
+ break;
+@@ -1034,7 +1034,7 @@
+ /* n . dddddddddddddddddddddddd E +- eeee */
+ conv_len += 1 + 1 + MAX (24, spec.precision) + 1 + 1 + 4;
+ if (spec.mod_extra_long)
+- g_warning (G_GNUC_PRETTY_FUNCTION
++ g_warning ("%s%s", G_GNUC_PRETTY_FUNCTION,
+ "(): unable to handle long double, collecting double only");
+ #ifdef HAVE_LONG_DOUBLE
+ #error need to implement special handling for long double
+@@ -1077,7 +1077,7 @@
+ conv_done = TRUE;
+ if (spec.mod_long)
+ {
+- g_warning (G_GNUC_PRETTY_FUNCTION
++ g_warning ("%s%s", G_GNUC_PRETTY_FUNCTION,
+ "(): unable to handle wide char strings");
+ len += 1024; /* try adding some safety padding */
+ }
+@@ -1108,9 +1108,8 @@
+ conv_len += format - spec_start;
+ break;
+ default:
+- g_warning (G_GNUC_PRETTY_FUNCTION
+- "(): unable to handle `%c' while parsing format",
+- c);
++ g_warning ("%s(): unable to handle `%c' while parsing format",
++ G_GNUC_PRETTY_FUNCTION, c);
+ break;
+ }
+ conv_done |= conv_len > 0;