1//
2// libcurl.dll cURL network retrieval client library
3//
4
5// Build-time options (uncomment these to enable)
6#define ENABLE_ZLIB     // Enable gzip/deflate decompression
7//#define ENABLE_SSL      // Enable SSL for HTTPS/FTPS (requires S60 Open C SDK)
8
9TARGET        libcurl.dll
10TARGETTYPE    dll
11UID    0x1000008d 0xF0206D00
12
13MACRO       BUILDING_LIBCURL
14
15#ifdef ENABLE_ZLIB
16MACRO       HAVE_LIBZ
17#endif
18#ifdef ENABLE_SSL
19MACRO       USE_OPENSSL
20#endif
21
22SOURCEPATH  ../../../lib
23SOURCE \
24  file.c timeval.c base64.c hostip.c progress.c formdata.c             \
25  cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c      \
26  ldap.c vtls/openssl.c version.c getenv.c escape.c mprintf.c telnet.c \
27  netrc.c getinfo.c transfer.c strequal.c easy.c security.c krb4.c     \
28  curl_fnmatch.c fileinfo.c ftplistparser.c wildcard.c krb5.c          \
29  memdebug.c http_chunks.c strtok.c connect.c llist.c hash.c multi.c   \
30  content_encoding.c share.c http_digest.c md4.c md5.c curl_rand.c     \
31  http_negotiate.c inet_pton.c strtoofft.c strerror.c amigaos.c        \
32  hostasyn.c hostip4.c hostip6.c hostsyn.c inet_ntop.c parsedate.c     \
33  select.c vtls/gtls.c vtls/vtls.c tftp.c splay.c strdup.c socks.c     \
34  ssh.c vtls/nss.c rawstr.c curl_addrinfo.c socks_gssapi.c             \
35  socks_sspi.c curl_sspi.c slist.c nonblock.c curl_memrchr.c imap.c    \
36  pop3.c smtp.c pingpong.c rtsp.c curl_threads.c warnless.c hmac.c     \
37  vtls/polarssl.c curl_rtmp.c openldap.c curl_gethostname.c gopher.c   \
38  vtls/axtls.c idn_win32.c http_negotiate_sspi.c vtls/cyassl.c         \
39  http_proxy.c non-ascii.c asyn-ares.c asyn-thread.c curl_gssapi.c     \
40  curl_ntlm.c curl_ntlm_wb.c curl_ntlm_core.c curl_ntlm_msgs.c         \
41  curl_sasl.c vtls/schannel.c curl_multibyte.c vtls/darwinssl.c        \
42  conncache.c curl_sasl_sspi.c smb.c curl_sasl_gssapi.c      \
43  curl_endian.c curl_des.c
44
45USERINCLUDE   ../../../lib ../../../include/curl
46#ifdef ENABLE_SSL
47SYSTEMINCLUDE /epoc32/include/osextensions/stdapis
48// Older versions of the SDK need this instead:
49//USERINCLUDE /epoc32/include/stdapis/openssl
50#endif
51
52SYSTEMINCLUDE ../../../include /epoc32/include/stdapis /epoc32/include
53
54LIBRARY       euser.lib libc.lib
55#ifdef ENABLE_ZLIB
56LIBRARY       ezlib.lib
57#endif
58#ifdef ENABLE_SSL
59LIBRARY       libssl.lib libcrypto.lib
60#endif
61
62CAPABILITY NetworkServices
63
64EPOCALLOWDLLDATA
65