~ubuntu-branches/ubuntu/jaunty/curl/jaunty-security

« back to all changes in this revision

Viewing changes to lib/Makefile.m32

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-08-01 12:22:30 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070801122230-uaarmp6lo65py9t6
Tags: 7.16.4-1ubuntu1
* Merge with Debian.
  - Drop debian/patches/gnutls-verifications, applied upstream.
  - Remove all stuff which should be reverted according to 7.16.2-6ubuntu4.
  - Remaining change: drop stunnel build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#############################################################
2
 
# $Id: Makefile.m32,v 1.37 2007-02-15 01:36:35 gknauf Exp $
 
2
# $Id: Makefile.m32,v 1.38 2007-07-04 13:45:46 gknauf Exp $
3
3
#
4
4
## Makefile for building libcurl.a with MingW32 (GCC-3.2) and
5
5
## optionally OpenSSL (0.9.8)
19
19
ZLIB_PATH = ../../zlib-1.2.3
20
20
endif
21
21
 
 
22
ARES_LIB = ../ares
 
23
 
22
24
CC = gcc
23
25
AR = ar
24
26
RM = rm -f
30
32
 
31
33
INCLUDES = -I. -I../include
32
34
CFLAGS = -g -O2 -DBUILDING_LIBCURL -DHAVE_LONGLONG
 
35
ifdef ARES
 
36
  INCLUDES += -I$(ARES_LIB)
 
37
  CFLAGS += -DUSE_ARES
 
38
  DLL_LIBS += -L$(ARES_LIB) -lcares
 
39
endif
33
40
ifdef SSH2
34
41
  INCLUDES += -I"$(LIBSSH2_PATH)/include" -I"$(LIBSSH2_PATH)/win32"
35
42
  CFLAGS += -DUSE_LIBSSH2 -DHAVE_LIBSSH2_H