~ubuntu-branches/ubuntu/natty/curl/natty-proposed

« back to all changes in this revision

Viewing changes to packages/Symbian/group/libcurl.mmp

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-05-24 21:12:19 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (3.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20090524211219-7jgcwuhl04ixuqsm
Tags: upstream-7.19.5
ImportĀ upstreamĀ versionĀ 7.19.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
// libcurl.dll cURL network retrieval client library
3
3
//
4
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
 
5
9
TARGET        libcurl.dll
6
10
TARGETTYPE    dll
7
11
UID    0x1000008d 0xF0206D00
8
12
 
9
 
MACRO       BUILDING_LIBCURL=1
 
13
MACRO       BUILDING_LIBCURL
 
14
 
 
15
#ifdef ENABLE_ZLIB
 
16
MACRO       HAVE_LIBZ
 
17
#endif
 
18
#ifdef ENABLE_SSL
 
19
MACRO       USE_SSLEAY
 
20
#endif
10
21
 
11
22
SOURCEPATH  ../../../lib
12
23
SOURCE \
19
30
  http_negotiate.c http_ntlm.c inet_pton.c strtoofft.c strerror.c   \
20
31
  hostares.c hostasyn.c hostip4.c hostip6.c hostsyn.c hostthre.c    \
21
32
  inet_ntop.c parsedate.c select.c gtls.c sslgen.c tftp.c splay.c   \
22
 
  strdup.c socks.c ssh.c nss.c qssl.c
23
 
 
24
 
USERINCLUDE   ../../../lib
25
 
 
26
 
SYSTEMINCLUDE ../../../include ../../../include/curl \
27
 
            /epoc32/include/stdapis /epoc32/include
 
33
  strdup.c socks.c ssh.c nss.c qssl.c rawstr.c curl_addrinfo.c      \
 
34
  socks_gssapi.c socks_sspi.c curl_sspi.c slist.c
 
35
 
 
36
USERINCLUDE   ../../../lib ../../../include/curl
 
37
#ifdef ENABLE_SSL
 
38
USERINCLUDE /epoc32/include/stdapis/openssl 
 
39
#endif
 
40
 
 
41
SYSTEMINCLUDE ../../../include /epoc32/include/stdapis /epoc32/include
28
42
 
29
43
LIBRARY       euser.lib libc.lib
 
44
#ifdef ENABLE_ZLIB
 
45
LIBRARY       ezlib.lib
 
46
#endif
 
47
#ifdef ENABLE_SSL
 
48
LIBRARY       libssl.lib libcrypto.lib
 
49
#endif
30
50
 
31
51
CAPABILITY NetworkServices
32
52