mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
3.5 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/gnome14/soup/gcc34.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- soup-0.7.11/src/libwsdl/wsdl-typecodes.c.orig 2004-07-20 03:05:20.881937824 +0200
  20. +++ soup-0.7.11/src/libwsdl/wsdl-typecodes.c 2004-07-20 03:12:25.701355456 +0200
  21. @@ -977,7 +977,7 @@
  22. {
  23. switch (tc->kind) {
  24. case WSDL_TK_GLIB_NULL:
  25. - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
  26. + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
  27. return (0);
  28. break;
  29. @@ -1082,7 +1082,7 @@
  30. break;
  31. case WSDL_TK_GLIB_MAX:
  32. - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
  33. + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
  34. return (0);
  35. break;
  36. }
  37. @@ -1106,7 +1106,7 @@
  38. {
  39. switch (tc->kind) {
  40. case WSDL_TK_GLIB_NULL:
  41. - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
  42. + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
  43. return (0);
  44. break;
  45. @@ -1218,7 +1218,7 @@
  46. break;
  47. case WSDL_TK_GLIB_MAX:
  48. - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
  49. + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
  50. return (0);
  51. break;
  52. }
  53. --- soup-0.7.11/src/libwsdl/wsdl-soap-parse.c.orig 2004-07-20 03:14:47.284831496 +0200
  54. +++ soup-0.7.11/src/libwsdl/wsdl-soap-parse.c 2004-07-20 03:15:21.280663344 +0200
  55. @@ -37,7 +37,7 @@
  56. switch (wsdl_typecode_kind (typecode)) {
  57. case WSDL_TK_GLIB_NULL:
  58. - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
  59. + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
  60. break;
  61. case WSDL_TK_GLIB_VOID:
  62. @@ -203,7 +203,7 @@
  63. /* Handled elsewhere */
  64. break;
  65. case WSDL_TK_GLIB_MAX:
  66. - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
  67. + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
  68. break;
  69. }
  70. }
  71. --- soup-0.7.11/src/libwsdl/wsdl-soap-memory.c.orig 2004-07-20 03:17:21.060454048 +0200
  72. +++ soup-0.7.11/src/libwsdl/wsdl-soap-memory.c 2004-07-20 03:18:18.200767400 +0200
  73. @@ -33,14 +33,12 @@
  74. while (param->name != NULL) {
  75. if (param->typecode == NULL) {
  76. - g_warning (G_GNUC_FUNCTION
  77. - ": Parameter %s has no typecode!",
  78. + g_warning ("%s: Parameter %s has no typecode!", G_GNUC_FUNCTION,
  79. param->name);
  80. } else {
  81. if (param->param == NULL) {
  82. - g_warning (G_GNUC_FUNCTION
  83. - ": Parameter %s has no "
  84. - "memory location!",
  85. + g_warning ("%s: Parameter %s has no "
  86. + "memory location!", G_GNUC_FUNCTION,
  87. param->name);
  88. } else {
  89. memset (param->param,
  90. @@ -71,8 +69,7 @@
  91. while (param->name != NULL) {
  92. if (param->typecode == NULL) {
  93. - g_warning (G_GNUC_FUNCTION
  94. - ": Parameter %s has no typecode!",
  95. + g_warning ("%s: Parameter %s has no typecode!", G_GNUC_FUNCTION,
  96. param->name);
  97. } else {
  98. if (param->param != NULL &&