On Thu, 14 Jun 2012 19:45:40 -0400 Michael Hughes <[email protected]> said:

> I see that "Makefile" defines:
> 
> CURL_CFLAGS = -I/usr/local/include
> CURL_LIBS = -L/usr/local/lib -L/usr/kerberos/lib -lcurl
> 
> but since cURL is from the repository, they are in "/usr/include" and 
> "usr/lib64". I assume that this is set by "configure" but I don't see a 
> likely parameter to control it. I can probably put some links in 
> "/usr/local" but that is messy.

it asks pkg-config for the cflags and libs vars:

PKG_CHECK_MODULES(CURL, libcurl...

from m4/ecore_check_options.m4 in ecore. that basically does what this does

pkg-config --cflags libcurl
pkg-config --libs libcurl

there is a libcurl.pc file somewhere on your system that defines these link and
compile flags. so the os pkgs/system is telling ecore to use these compile
flags to compile with curl. :)


-- 
------------- Codito, ergo sum - "I code, therefore I am" --------------
The Rasterman (Carsten Haitzler)    [email protected]


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to