diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-10-23 11:49:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-10-23 11:49:19 +0000 |
commit | b701ea36a723b2d7700e23ae53e2c3145dfe7bda (patch) | |
tree | e0091b4ed55f125c07fd711cf9cf97c693628a9f /lib/Makefile.inc | |
parent | 198fa5e3c7354101ba3e01c4ec63e1bede58022d (diff) | |
download | curl-b701ea36a723b2d7700e23ae53e2c3145dfe7bda.tar.gz |
moved the Curl_raw_ functions into the new lib/rawstr.c file for easier curlx_
inclusion by the curl tool without colliding with the curl_strequal functions.
Diffstat (limited to 'lib/Makefile.inc')
-rw-r--r-- | lib/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile.inc b/lib/Makefile.inc index 7be6ccf91..a89e8d919 100644 --- a/lib/Makefile.inc +++ b/lib/Makefile.inc @@ -9,7 +9,7 @@ CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c \ http_negotiate.c http_ntlm.c inet_pton.c strtoofft.c strerror.c \ hostares.c hostasyn.c hostip4.c hostip6.c hostsyn.c hostthre.c \ inet_ntop.c parsedate.c select.c gtls.c sslgen.c tftp.c splay.c \ - strdup.c socks.c ssh.c nss.c qssl.c + strdup.c socks.c ssh.c nss.c qssl.c rawstr.c HHEADERS = arpa_telnet.h netrc.h file.h timeval.h qssl.h hostip.h \ progress.h formdata.h cookie.h http.h sendf.h ftp.h url.h dict.h \ @@ -20,4 +20,4 @@ HHEADERS = arpa_telnet.h netrc.h file.h timeval.h qssl.h hostip.h \ strtoofft.h strerror.h inet_ntop.h curlx.h memory.h setup.h \ transfer.h select.h easyif.h multiif.h parsedate.h sslgen.h gtls.h \ tftp.h sockaddr.h splay.h strdup.h setup_once.h socks.h ssh.h nssg.h \ - curl_base64.h + curl_base64.h rawstr.h |