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

« back to all changes in this revision

Viewing changes to lib/Makefile.vc6

  • 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:
1
 
#############################################################
2
 
# $Id: Makefile.vc6,v 1.19 2004/11/14 13:48:15 giva Exp $
 
1
#***************************************************************************
 
2
#                                  _   _ ____  _
 
3
#  Project                     ___| | | |  _ \| |
 
4
#                             / __| | | | |_) | |
 
5
#                            | (__| |_| |  _ <| |___
 
6
#                             \___|\___/|_| \_\_____|
 
7
#
 
8
# Copyright (C) 1999 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
 
9
#
 
10
# This software is licensed as described in the file COPYING, which
 
11
# you should have received as part of this distribution. The terms
 
12
# are also available at http://curl.haxx.se/docs/copyright.html.
 
13
#
 
14
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
 
15
# copies of the Software, and permit persons to whom the Software is
 
16
# furnished to do so, under the terms of the COPYING file.
 
17
#
 
18
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 
19
# KIND, either express or implied.
 
20
#
 
21
# $Id: Makefile.am,v 1.139 2008-11-03 08:50:58 bagder Exp $
 
22
###########################################################################
3
23
#
4
24
# Makefile for building libcurl with MSVC6
5
25
#
426
446
#
427
447
X_OBJS= \
428
448
        $(DIROBJ)\base64.obj \
 
449
        $(DIROBJ)\connect.obj \
 
450
        $(DIROBJ)\content_encoding.obj \
429
451
        $(DIROBJ)\cookie.obj \
430
 
        $(DIROBJ)\transfer.obj \
 
452
        $(DIROBJ)\curl_addrinfo.obj \
 
453
        $(DIROBJ)\curl_sspi.obj \
 
454
        $(DIROBJ)\dict.obj \
 
455
        $(DIROBJ)\easy.obj \
431
456
        $(DIROBJ)\escape.obj \
 
457
        $(DIROBJ)\file.obj \
432
458
        $(DIROBJ)\formdata.obj \
433
459
        $(DIROBJ)\ftp.obj \
434
 
        $(DIROBJ)\http.obj \
435
 
        $(DIROBJ)\http_chunks.obj \
436
 
        $(DIROBJ)\ldap.obj \
437
 
        $(DIROBJ)\dict.obj \
438
 
        $(DIROBJ)\telnet.obj \
439
 
        $(DIROBJ)\parsedate.obj \
440
460
        $(DIROBJ)\getenv.obj \
 
461
        $(DIROBJ)\getinfo.obj \
441
462
        $(DIROBJ)\gtls.obj \
442
 
        $(DIROBJ)\inet_pton.obj \
 
463
        $(DIROBJ)\hash.obj \
 
464
        $(DIROBJ)\hostares.obj \
 
465
        $(DIROBJ)\hostasyn.obj \
443
466
        $(DIROBJ)\hostip.obj \
444
 
        $(DIROBJ)\hostasyn.obj \
 
467
        $(DIROBJ)\hostip4.obj \
 
468
        $(DIROBJ)\hostip6.obj \
445
469
        $(DIROBJ)\hostsyn.obj \
446
 
        $(DIROBJ)\hostares.obj \
447
470
        $(DIROBJ)\hostthre.obj \
448
 
        $(DIROBJ)\hostip4.obj \
449
 
        $(DIROBJ)\hostip6.obj \
 
471
        $(DIROBJ)\http.obj \
 
472
        $(DIROBJ)\http_chunks.obj \
 
473
        $(DIROBJ)\http_digest.obj \
 
474
        $(DIROBJ)\http_negotiate.obj \
 
475
        $(DIROBJ)\http_ntlm.obj \
 
476
        $(DIROBJ)\if2ip.obj \
450
477
        $(DIROBJ)\inet_ntop.obj \
451
 
        $(DIROBJ)\if2ip.obj \
 
478
        $(DIROBJ)\inet_pton.obj \
 
479
        $(DIROBJ)\ldap.obj \
 
480
        $(DIROBJ)\llist.obj \
 
481
        $(DIROBJ)\md5.obj \
 
482
        $(DIROBJ)\memdebug.obj \
452
483
        $(DIROBJ)\mprintf.obj \
 
484
        $(DIROBJ)\multi.obj \
453
485
        $(DIROBJ)\netrc.obj \
 
486
        $(DIROBJ)\parsedate.obj \
454
487
        $(DIROBJ)\progress.obj \
 
488
        $(DIROBJ)\rawstr.obj \
 
489
        $(DIROBJ)\select.obj \
455
490
        $(DIROBJ)\sendf.obj \
 
491
        $(DIROBJ)\share.obj \
 
492
        $(DIROBJ)\socks.obj \
 
493
        $(DIROBJ)\socks_sspi.obj \
456
494
        $(DIROBJ)\speedcheck.obj \
 
495
        $(DIROBJ)\splay.obj \
 
496
        $(DIROBJ)\ssh.obj \
457
497
        $(DIROBJ)\sslgen.obj \
458
498
        $(DIROBJ)\ssluse.obj \
459
 
        $(DIROBJ)\timeval.obj \
460
 
        $(DIROBJ)\url.obj \
461
 
        $(DIROBJ)\file.obj \
462
 
        $(DIROBJ)\getinfo.obj \
463
 
        $(DIROBJ)\version.obj \
464
 
        $(DIROBJ)\easy.obj \
465
499
        $(DIROBJ)\strequal.obj \
 
500
        $(DIROBJ)\strerror.obj \
466
501
        $(DIROBJ)\strtok.obj \
467
502
        $(DIROBJ)\strtoofft.obj \
468
 
        $(DIROBJ)\connect.obj \
469
 
        $(DIROBJ)\hash.obj \
470
 
        $(DIROBJ)\llist.obj \
471
 
        $(DIROBJ)\share.obj \
472
 
        $(DIROBJ)\multi.obj \
473
 
        $(DIROBJ)\http_digest.obj \
474
 
        $(DIROBJ)\http_negotiate.obj \
475
 
        $(DIROBJ)\http_ntlm.obj \
476
 
        $(DIROBJ)\md5.obj \
477
 
        $(DIROBJ)\memdebug.obj \
478
 
        $(DIROBJ)\strerror.obj \
479
 
        $(DIROBJ)\select.obj \
480
 
        $(DIROBJ)\content_encoding.obj \
 
503
        $(DIROBJ)\telnet.obj \
481
504
        $(DIROBJ)\tftp.obj \
482
 
        $(DIROBJ)\splay.obj \
483
 
        $(DIROBJ)\socks.obj \
 
505
        $(DIROBJ)\timeval.obj \
 
506
        $(DIROBJ)\transfer.obj \
 
507
        $(DIROBJ)\url.obj \
 
508
        $(DIROBJ)\version.obj \
484
509
        $(RESOURCE)
485
510
 
486
511
all : $(TARGET)