Re: Strange compilation errors

2006-11-06 Thread Ramtin
might check for "redefined" errors on this symbol.I would tend to remove the rpm before installing a built version, but either way should work.Regards,LeeOn Sat, 2006-11-04 at 18:56 -0800, Ramtin wrote: Hi everybody,I had installed openssl as a rpm package (openssl-0.9.7g-2mdk) into my linux

Strange compilation errors

2006-11-04 Thread Ramtin
Hi everybody,I had installed openssl as a rpm package (openssl-0.9.7g-2mdk) into my linux box(mandriva 2006 official), but i was unable to compile applications that include headers like openssl/bio.h or openssl/ssl.h. So I downloaded the latest openssl from the site. And install it without any erro

RE: Error accepting connections

2006-11-02 Thread Ramtin
I am a newbie to openssl, and dont know what your problem actually is!But if you want to use locks this may help:include the pthread.h, ofcourse you already do that.create a mutex:pthread_mutex_t mut;initialize it:pthread_mutex_init(&mut, NULL);From now on, you can create critical sections using lo