libcurl.mmp 2.5 KB

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