aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.inc
AgeCommit message (Collapse)Author
2007-02-20curl tool was using functions curlx_tvnow and curlx_tvdiff which are notYang Tse
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.
2006-07-11Moved strdup replacement from src/main.c into src/strdup.c so it's availableDan Fandrich
in libcurl as well, if necessary.
2005-03-16Removed references to config-vms.h from the makefiles.Dan Fandrich
2004-07-28renamed CURL_HEADERS, since it is a magic automake name we must not useDaniel Stenberg
2004-07-03added Makefile.inc which can be included from other makefiles to reduce ↵Gunter Knauf
maintaining.