From: Martin F. <mf...@ix...> - 2005-08-10 19:59:52
|
Hi, I had some problems with evolution 2.0, so I gave evolution 2.4 (cvs) a try and it worked very well for me (the tasks didn't want to work with 2.0). But with that new version of evolution-data-server and it's providing development files I had problems compiling the evo2-plugin. evolution2_ebook.c: In function `evo2_addrbook_get_changes': evolution2_ebook.c:136: warning: initialization discards qualifiers from pointer target type. Line 136 of evolution2_ebook.c is: char *uid = e_contact_get_const(contact, E_CONTACT_UID); by replacing it with: char *uid = (char*)e_contact_get_const(contact, E_CONTACT_UID); all went well. Have a nice day. Martin |