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

« back to all changes in this revision

Viewing changes to lib/Makefile.riscos

  • 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:
7
7
        o.dllinit o.easy o.escape o.file \
8
8
        o.formdata o.ftp o.getenv \
9
9
        o.getinfo o.getpass o.hostip \
10
 
    o.hostip4 o.hostsyn o.http \
 
10
        o.hostip4 o.hostsyn o.http \
11
11
        o.http_chunks o.inet_ntop o.inet_pton o.if2ip o.krb4 o.ldap \
12
12
        o.memdebug o.mprintf o.netrc o.parsedate o.progress \
13
13
        o.security o.select o.sendf o.speedcheck o.ssluse \
14
14
        o.strequal o.strtok o.telnet o.timeval \
15
 
        o.transfer o.url o.version o.strtoofft o.sslgen o.gtls
 
15
        o.transfer o.url o.version o.strtoofft o.sslgen o.gtls \
 
16
        o.rawstr o.curl_addrinfo
16
17
 
17
18
# Compile options:
18
19
linkopts        = -o libcurl
32
33
o.cookie:       c.cookie
33
34
                gcc $(compileropts) -c -o cookie.o c.cookie
34
35
 
 
36
o.curl_addrinfo:        c.curl_addrinfo
 
37
                gcc $(compileropts) -c -o curl_addrinfo.o c.curl_addrinfo
 
38
 
35
39
o.dict: c.dict
36
40
                gcc $(compileropts) -c -o dict.o c.dict
37
41
 
128
132
o.ssluse:       c.ssluse
129
133
                gcc $(compileropts) -c -o ssluse.o c.ssluse
130
134
 
 
135
o.rawstr:       c.rawstr
 
136
                gcc $(compileropts) -c -o rawstr.o c.rawstr
 
137
 
131
138
o.strequal:     c.strequal
132
139
                gcc $(compileropts) -c -o strequal.o c.strequal
133
140