Re: [Evolution-hackers] libcamel problems

2005-09-22 Thread Jeffrey Stedfast
you never called camel_init() On Thu, 2005-09-22 at 14:02 -0400, ethan zimmerman wrote: > > For linking with gcc, you do something like > > -Wl,-R/usr/lib64/evolution/2.0 > > > Thank you this fixed my problem. However I am now getting a segfault > here.. > > msg = came

Re: [Evolution-hackers] libcamel problems

2005-09-22 Thread ethan zimmerman
For linking with gcc, you do something like-Wl,-R/usr/lib64/evolution/2.0 Thank you this fixed my problem. However I am now getting a segfault here... msg = camel_mime_message_new(); If this requires GDB ouput to diagnose just let me know what commands to run. Thank you for your help and for

Re: [Evolution-hackers] libcamel problems

2005-09-21 Thread Not Zed
With the older versions of camel that install the libraries in an evolution-specific directory, you have to either manually specify the run-path to the linker, or use LD_LIBRARY_PATH. For linking with gcc, you do something like -Wl,-R/usr/lib64/evolution/2.0 Or just specify the full path to the

[Evolution-hackers] libcamel problems

2005-09-21 Thread ethan zimmerman
Hello I am new to this list. I've checked the list archives and done some googling but to no avail so I'm turning to you guys. I'm trying to learn how to use libcamel (initially for MIME parsing) but I'm having compiling/linking problems. Here is my Hello World program (taken from the wiki). I'm n