Page 1 of 1

Curl Libaries not being recognized

Posted: 27 Dec 2007, 06:42
by staticboy44
I have a problem getting pass the configure part of the .24 build.

heres what i get:

Code: Select all

checking for curl_global_init in -lcurl... no
configure: error:  *** Unable to find CURL library (http://curl.haxx.se/)
i installed curl from the ubuntu packages. do i need an older version?

Posted: 27 Dec 2007, 06:55
by Rotonen
In the Debian philosophy of things, the package itself only contains what you need to run the things that need it, not compile. For most cases this is great, since you don't have to download and install stuff you don't actually need.

For compiling you need the package-dev, which should be something akin to libcurl-dev in this case. Do an apt-cache search curl to find out yourself.

Also as an additional hint, for installing one should probably use aptitude instead of apt-get for better dependency solving and less problems.