summaryrefslogtreecommitdiff
path: root/src/Makefile.inc
Commit message (Collapse)AuthorAgeFilesLines
...
* moved the Curl_raw_ functions into the new lib/rawstr.c file for easier curlx_Daniel Stenberg2008-10-231-1/+1
| | | | inclusion by the curl tool without colliding with the curl_strequal functions.
* compile the library file strequal.c to get the Curl_raw_equal function asDaniel Stenberg2008-10-161-1/+2
| | | | that's not exported by the lib
* curl tool was using functions curlx_tvnow and curlx_tvdiff which are notYang Tse2007-02-201-3/+3
| | | | | | | | | | | | | | | | | part of the official libcurl API http://curl.haxx.se/lxr/source/lib/README.curlx The documented way of using them would be to use timeval.c as a source code file. The above described method works very well when statically linking libcurl and apps, curl tool, but has several drawbacks when you build a true shared libcurl (i.e. Name space clash at linkage stage as functions are defined more than once. Windows makefiles are not capable of handling this system of source-level sharing) So... Now curlutil.h and curlutil.c define and implement cutil_tvnow and cutil_tvdiff which replace curlx_tvnow and curlx_tvdiff for the curl tool. Doing this we avoid the above described problems.
* Moved strdup replacement from src/main.c into src/strdup.c so it's availableDan Fandrich2006-07-111-1/+2
| | | | in libcurl as well, if necessary.
* Removed references to config-vms.h from the makefiles.Dan Fandrich2005-03-161-1/+1
|
* renamed CURL_HEADERS, since it is a magic automake name we must not useDaniel Stenberg2004-07-281-2/+2
|
* added Makefile.inc which can be included from other makefiles to reduce ↵Gunter Knauf2004-07-031-0/+16
maintaining.