DLL dependant on curllib.dll - How can I fix this?

Posted by haraldo on Stack Overflow See other posts from Stack Overflow or by haraldo
Published on 2010-04-15T19:29:27Z Indexed on 2010/04/15 19:33 UTC
Read the original article Hit count: 315

Filed under:
|

Hi there,

I'm new to developing in C++. I've developed a dll where I'm using curllib to make HTTP requests.

When running the dll via depend.exe it notifies me that my dll now depends on the curllib.dll. This simply doesn't work for me. My dll is set as a static library not shared and will be distributed on its own. I cannot rely on a user having libcurl.dll installed.

I thought by including libcurl into my project this is all that would be needed and my dll could be independent.

If this is impossible to resolve is there an alternative method I can use to create HTTP requests? Obviously I would prefer to use libcurl.

Thanks in advance.

© Stack Overflow or respective owner

Related posts about libcurl

Related posts about dll