Matthew Barnes e85c91
--- evolution-data-server-1.8.1/libedataserverui/e-name-selector-dialog.c.warn-incompatible-pointer-type	2006-08-19 07:11:53.000000000 -0400
Matthew Barnes e85c91
+++ evolution-data-server-1.8.1/libedataserverui/e-name-selector-dialog.c	2006-10-08 22:10:10.000000000 -0400
Matthew Barnes e85c91
@@ -541,7 +541,7 @@
Matthew Barnes e85c91
 	section.remove_button  = GTK_BUTTON (gtk_button_new());
Matthew Barnes e85c91
 	section.destination_view = GTK_TREE_VIEW (gtk_tree_view_new ());
Matthew Barnes e85c91
 
Matthew Barnes e85c91
-	gtk_label_set_mnemonic_widget (GTK_LABEL (section.label), section.destination_view);
Matthew Barnes e85c91
+	gtk_label_set_mnemonic_widget (GTK_LABEL (section.label), GTK_WIDGET (section.destination_view));
Matthew Barnes e85c91
 
Matthew Barnes e85c91
 	if (pango_parse_markup (pretty_name, -1, '_', NULL,
Matthew Barnes e85c91
 				&text, NULL, NULL))  {
Matthew Barnes e85c91
--- evolution-data-server-1.8.1/libedataserver/e-data-server-module.c.warn-incompatible-pointer-type	2006-05-10 00:36:46.000000000 -0400
Matthew Barnes e85c91
+++ evolution-data-server-1.8.1/libedataserver/e-data-server-module.c	2006-10-08 22:10:10.000000000 -0400
Matthew Barnes e85c91
@@ -270,5 +270,5 @@
Matthew Barnes e85c91
 void
Matthew Barnes e85c91
 e_data_server_module_remove_unused (void)
Matthew Barnes e85c91
 {
Matthew Barnes e85c91
-	g_list_foreach (module_objects, g_object_unref, NULL);
Matthew Barnes e85c91
+	g_list_foreach (module_objects, (GFunc) g_object_unref, NULL);
Matthew Barnes e85c91
 }
Matthew Barnes e85c91
--- evolution-data-server-1.8.1/camel/providers/nntp/camel-nntp-store-summary.c.warn-incompatible-pointer-type	2006-04-20 04:52:55.000000000 -0400
Matthew Barnes e85c91
+++ evolution-data-server-1.8.1/camel/providers/nntp/camel-nntp-store-summary.c	2006-10-08 22:10:10.000000000 -0400
Matthew Barnes e85c91
@@ -249,7 +249,7 @@
Matthew Barnes e85c91
 			} else {
Matthew Barnes e85c91
 				if (c == '/')
Matthew Barnes e85c91
 					c = dir_sep;
Matthew Barnes e85c91
-				camel_utf8_putc(&f, c);
Matthew Barnes e85c91
+				camel_utf8_putc((unsigned char **) &f, c);
Matthew Barnes e85c91
 			}
Matthew Barnes e85c91
 			break;
Matthew Barnes e85c91
 		case 1:
Matthew Barnes e85c91
@@ -259,11 +259,11 @@
Matthew Barnes e85c91
 		case 2:
Matthew Barnes e85c91
 			state = 0;
Matthew Barnes e85c91
 			v |= hexnib (c);
Matthew Barnes e85c91
-			camel_utf8_putc (&f, v);
Matthew Barnes e85c91
+			camel_utf8_putc ((unsigned char **) &f, v);
Matthew Barnes e85c91
 			break;
Matthew Barnes e85c91
 		}
Matthew Barnes e85c91
 	}
Matthew Barnes e85c91
-	camel_utf8_putc (&f, c);
Matthew Barnes e85c91
+	camel_utf8_putc ((unsigned char **) &f, c);
Matthew Barnes e85c91
 	
Matthew Barnes e85c91
 	/* merge old path part if required */
Matthew Barnes e85c91
 	f = camel_utf8_utf7 (full);
Matthew Barnes e85c91
--- evolution-data-server-1.8.1/camel/providers/imap/camel-imap-store-summary.c.warn-incompatible-pointer-type	2006-04-20 04:52:54.000000000 -0400
Matthew Barnes e85c91
+++ evolution-data-server-1.8.1/camel/providers/imap/camel-imap-store-summary.c	2006-10-08 22:10:10.000000000 -0400
Matthew Barnes e85c91
@@ -256,7 +256,7 @@
Matthew Barnes e85c91
 			else {
Matthew Barnes e85c91
 				if (c == '/')
Matthew Barnes e85c91
 					c = dir_sep;
Matthew Barnes e85c91
-				camel_utf8_putc(&f, c);
Matthew Barnes e85c91
+				camel_utf8_putc((unsigned char **) &f, c);
Matthew Barnes e85c91
 			}
Matthew Barnes e85c91
 			break;
Matthew Barnes e85c91
 		case 1:
Matthew Barnes e85c91
@@ -266,11 +266,11 @@
Matthew Barnes e85c91
 		case 2:
Matthew Barnes e85c91
 			state = 0;
Matthew Barnes e85c91
 			v |= hexnib(c);
Matthew Barnes e85c91
-			camel_utf8_putc(&f, v);
Matthew Barnes e85c91
+			camel_utf8_putc((unsigned char **) &f, v);
Matthew Barnes e85c91
 			break;
Matthew Barnes e85c91
 		}
Matthew Barnes e85c91
 	}
Matthew Barnes e85c91
-	camel_utf8_putc(&f, c);
Matthew Barnes e85c91
+	camel_utf8_putc((unsigned char **) &f, c);
Matthew Barnes e85c91
 
Matthew Barnes e85c91
 	/* merge old path part if required */
Matthew Barnes e85c91
 	f = g_strdup(full);
Matthew Barnes e85c91
--- evolution-data-server-1.8.1/camel/providers/groupwise/camel-groupwise-utils.c.warn-incompatible-pointer-type	2006-07-22 06:58:51.000000000 -0400
Matthew Barnes e85c91
+++ evolution-data-server-1.8.1/camel/providers/groupwise/camel-groupwise-utils.c	2006-10-08 22:10:10.000000000 -0400
Matthew Barnes e85c91
@@ -442,8 +442,8 @@
Matthew Barnes e85c91
 			
Matthew Barnes e85c91
 			charset = camel_content_type_param (type, "charset");
Matthew Barnes e85c91
 			if (charset && g_ascii_strcasecmp (charset, "US-ASCII") && g_ascii_strcasecmp (charset, "UTF-8")) {
Matthew Barnes e85c91
-				filter = camel_mime_filter_charset_new_convert (charset, "UTF-8");
Matthew Barnes e85c91
-				filtered_stream = camel_stream_filter_new_with_stream ((CamelStream *) content);
Matthew Barnes e85c91
+				filter = (CamelMimeFilter *) camel_mime_filter_charset_new_convert (charset, "UTF-8");
Matthew Barnes e85c91
+				filtered_stream = (CamelStream *) camel_stream_filter_new_with_stream ((CamelStream *) content);
Matthew Barnes e85c91
 				camel_stream_filter_add ((CamelStreamFilter *) filtered_stream, filter);
Matthew Barnes e85c91
 				camel_object_unref (filter);
Matthew Barnes e85c91
 			} else {
Matthew Barnes e85c91
@@ -665,8 +665,8 @@
Matthew Barnes e85c91
 			
Matthew Barnes e85c91
 			charset = camel_content_type_param (type, "charset");
Matthew Barnes e85c91
 			if (charset && g_ascii_strcasecmp (charset, "US-ASCII") && g_ascii_strcasecmp (charset, "UTF-8")) {
Matthew Barnes e85c91
-				filter = camel_mime_filter_charset_new_convert (charset, "UTF-8");
Matthew Barnes e85c91
-				filtered_stream = camel_stream_filter_new_with_stream ((CamelStream *) content);
Matthew Barnes e85c91
+				filter = (CamelMimeFilter *) camel_mime_filter_charset_new_convert (charset, "UTF-8");
Matthew Barnes e85c91
+				filtered_stream = (CamelStream *) camel_stream_filter_new_with_stream ((CamelStream *) content);
Matthew Barnes e85c91
 				camel_stream_filter_add ((CamelStreamFilter *) filtered_stream, filter);
Matthew Barnes e85c91
 				camel_object_unref (filter);
Matthew Barnes e85c91
 			} else {