[evolution-patches] Fix to solve camel-docs build issue
- From: Shreyas <sshreyas novell com>
- To: evolution-patches lists ximian com
- Subject: [evolution-patches] Fix to solve camel-docs build issue
- Date: Mon, 11 Jul 2005 16:55:33 +0530
Hey,
Attaching a patch which fixes :-? the build breakage in
docs/reference/camel.
gtk-doc was failing to pick up a structure definition in
camel-imap-wrapper.h
file. I had a look at the gtk-doc-common.pl file which does the parsing
and it seems
that somehow
typedef struct {
*is valid* / or so it seems
and
typedef struct
{
*is confusing the script* / or so it seems
so the patch does the above change which also seems to fit the style of
the surrounding code. I dont know if this is a "shot in the dark" or so
but camel-docs builds for me now.
Cheers,
Shreyas
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution-data-server/camel/ChangeLog,v
retrieving revision 1.2454
diff -u -p -r1.2454 ChangeLog
--- ChangeLog 10 Jul 2005 10:10:15 -0000 1.2454
+++ ChangeLog 11 Jul 2005 11:12:09 -0000
@@ -1,3 +1,8 @@
+2005-07-11 Shreyas Srinivasan <sshreyas novell com>
+
+ * camel/providers/imap/camel-imap-wrapper.h: Change style
+ to fix break in docs/reference/camel build.
+
2005-07-10 Shreyas Srinivasan <sshreyas novell com>
* camel-store.h: Add a new #define to identify proxy stores
Index: providers/imap/camel-imap-wrapper.h
===================================================================
RCS file: /cvs/gnome/evolution-data-server/camel/providers/imap/camel-imap-wrapper.h,v
retrieving revision 1.7
diff -u -p -r1.7 camel-imap-wrapper.h
--- providers/imap/camel-imap-wrapper.h 12 Jan 2004 04:43:40 -0000 1.7
+++ providers/imap/camel-imap-wrapper.h 11 Jul 2005 11:12:50 -0000
@@ -37,8 +37,7 @@ extern "C" {
#define CAMEL_IMAP_WRAPPER_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_IMAP_WRAPPER_TYPE, CamelImapWrapperClass))
#define CAMEL_IS_IMAP_WRAPPER(o) (CAMEL_CHECK_TYPE((o), CAMEL_IMAP_WRAPPER_TYPE))
-typedef struct
-{
+typedef struct {
CamelDataWrapper parent_object;
struct _CamelImapWrapperPrivate *priv;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]