> From: Dan Fandrich
> Subject: Re: Problem using curl in a Apache module
> 
> > With APXS, I can to deploy the module into Apache, but when I try to
> restart
> > Apache, it shows me this error. "undefined symbol: curl_easy_perform.
> Action
> > 'configtest' failed."
> >
> > The module is trivial... only a example of how to made a connection
> via HTTP
> > from a Apache module to a URL.
> 
> How are you building this module? It sounds like either libcurl.so.4
> isn't
> a dependency or it can't be found at run-time as it's loaded. ldd on
> the binary
> module would tell you both.
> 

You need the following in your httpd.conf file prior to the LoadModule 
directive which loads your module:

LoadFile /usr/local/lib/libcurl.so

Obviously, replace the path and library name with the one you 
actually linked your module against.

More details at 
http://httpd.apache.org/docs/2.4/mod/mod_so.html#loadfile

Good luck!
Gary

-------------------------------------------------------------------
List admin: http://cool.haxx.se/list/listinfo/curl-library
Etiquette:  http://curl.haxx.se/mail/etiquette.html

Reply via email to