2008-04-22 18:53:53 -04:00
|
|
|
//
|
|
|
|
// libcurl.dll cURL network retrieval client library
|
|
|
|
//
|
|
|
|
|
2009-04-11 03:06:34 -04:00
|
|
|
// Build-time options (uncomment these to enable)
|
2010-03-11 01:58:36 -05:00
|
|
|
#define ENABLE_ZLIB // Enable gzip/deflate decompression
|
2008-10-25 01:41:01 -04:00
|
|
|
//#define ENABLE_SSL // Enable SSL for HTTPS/FTPS (requires S60 Open C SDK)
|
|
|
|
|
2008-04-22 18:53:53 -04:00
|
|
|
TARGET libcurl.dll
|
|
|
|
TARGETTYPE dll
|
2008-04-25 18:49:18 -04:00
|
|
|
UID 0x1000008d 0xF0206D00
|
2008-04-22 18:53:53 -04:00
|
|
|
|
2008-10-25 01:41:01 -04:00
|
|
|
MACRO BUILDING_LIBCURL
|
|
|
|
|
|
|
|
#ifdef ENABLE_ZLIB
|
|
|
|
MACRO HAVE_LIBZ
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_SSL
|
2015-03-05 04:57:52 -05:00
|
|
|
MACRO USE_OPENSSL
|
2008-10-25 01:41:01 -04:00
|
|
|
#endif
|
2008-04-22 18:53:53 -04:00
|
|
|
|
2008-05-13 13:50:03 -04:00
|
|
|
SOURCEPATH ../../../lib
|
2008-04-22 18:53:53 -04:00
|
|
|
SOURCE \
|
2014-01-05 14:13:55 -05:00
|
|
|
file.c timeval.c base64.c hostip.c progress.c formdata.c \
|
|
|
|
cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c \
|
|
|
|
ldap.c vtls/openssl.c version.c getenv.c escape.c mprintf.c telnet.c \
|
|
|
|
netrc.c getinfo.c transfer.c strequal.c easy.c security.c krb4.c \
|
|
|
|
curl_fnmatch.c fileinfo.c ftplistparser.c wildcard.c krb5.c \
|
|
|
|
memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c multi.c \
|
|
|
|
content_encoding.c share.c http_digest.c md4.c md5.c curl_rand.c \
|
|
|
|
http_negotiate.c inet_pton.c strtoofft.c strerror.c amigaos.c \
|
|
|
|
hostasyn.c hostip4.c hostip6.c hostsyn.c inet_ntop.c parsedate.c \
|
|
|
|
select.c vtls/gtls.c vtls/vtls.c tftp.c splay.c strdup.c socks.c \
|
2014-10-13 10:33:47 -04:00
|
|
|
ssh.c vtls/nss.c rawstr.c curl_addrinfo.c socks_gssapi.c \
|
2014-01-05 14:13:55 -05:00
|
|
|
socks_sspi.c curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c \
|
|
|
|
pop3.c smtp.c pingpong.c rtsp.c curl_threads.c warnless.c hmac.c \
|
|
|
|
vtls/polarssl.c curl_rtmp.c openldap.c curl_gethostname.c gopher.c \
|
2016-03-13 16:09:15 -04:00
|
|
|
vtls/axtls.c idn_win32.c vtls/cyassl.c http_proxy.c non-ascii.c \
|
|
|
|
asyn-ares.c asyn-thread.c curl_gssapi.c curl_ntlm.c curl_ntlm_wb.c \
|
|
|
|
curl_ntlm_core.c curl_sasl.c vtls/schannel.c curl_multibyte.c \
|
|
|
|
vtls/darwinssl.c conncache.c curl_sasl_sspi.c smb.c curl_endian.c \
|
|
|
|
curl_des.c \
|
2015-09-12 09:15:09 -04:00
|
|
|
vauth/vauth.c vauth/cleartext.c vauth/cram.c vauth/digest.c \
|
2015-09-12 09:50:02 -04:00
|
|
|
vauth/digest_sspi.c vauth/krb5_gssapi.c vauth/krb5_sspi.c \
|
2016-03-13 14:51:46 -04:00
|
|
|
vauth/ntlm.c vauth/ntlm_sspi.c vauth/oauth2.c vauth/spnego_gssapi.c \
|
|
|
|
vauth/spnego_sspi.c
|
2008-04-22 18:53:53 -04:00
|
|
|
|
2008-10-28 16:05:09 -04:00
|
|
|
USERINCLUDE ../../../lib ../../../include/curl
|
2009-04-11 03:06:34 -04:00
|
|
|
#ifdef ENABLE_SSL
|
2010-03-10 01:55:23 -05:00
|
|
|
SYSTEMINCLUDE /epoc32/include/osextensions/stdapis
|
2009-09-25 12:51:57 -04:00
|
|
|
// Older versions of the SDK need this instead:
|
2010-02-14 14:40:18 -05:00
|
|
|
//USERINCLUDE /epoc32/include/stdapis/openssl
|
2009-04-11 03:06:34 -04:00
|
|
|
#endif
|
2008-04-22 18:53:53 -04:00
|
|
|
|
2008-10-28 16:05:09 -04:00
|
|
|
SYSTEMINCLUDE ../../../include /epoc32/include/stdapis /epoc32/include
|
2008-04-22 18:53:53 -04:00
|
|
|
|
|
|
|
LIBRARY euser.lib libc.lib
|
2008-10-25 01:41:01 -04:00
|
|
|
#ifdef ENABLE_ZLIB
|
|
|
|
LIBRARY ezlib.lib
|
|
|
|
#endif
|
|
|
|
#ifdef ENABLE_SSL
|
|
|
|
LIBRARY libssl.lib libcrypto.lib
|
|
|
|
#endif
|
2008-04-24 19:24:57 -04:00
|
|
|
|
|
|
|
CAPABILITY NetworkServices
|
2008-04-22 18:53:53 -04:00
|
|
|
|
|
|
|
EPOCALLOWDLLDATA
|