~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2009-04-29 11:10:29 UTC
  • mfrom: (3.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090429111029-2j5eiyokfw2bw049
Tags: 7.19.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Drop build dependencies: stunnel, libdb4.6-dev, libssh2-1-dev
  - Add build-dependency on openssh-server
  - Drop libssh2-1-dev from libcurl4-openssl-dev's Depends.
  - Call automake-1.9 with --add-missing --copy --force
* drop debian/patches/security_CVE-2009-0037.patch 
  - this patch is part of 7.19.4

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
 
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_SSL
 
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
 
 
35
USERINCLUDE   ../../../lib ../../../include/curl
 
36
 
 
37
SYSTEMINCLUDE ../../../include /epoc32/include/stdapis /epoc32/include
28
38
 
29
39
LIBRARY       euser.lib libc.lib
 
40
#ifdef ENABLE_ZLIB
 
41
LIBRARY       ezlib.lib
 
42
#endif
 
43
#ifdef ENABLE_SSL
 
44
LIBRARY       libssl.lib libcrypto.lib
 
45
#endif
30
46
 
31
47
CAPABILITY NetworkServices
32
48