The error buffer was not getting filled when Curl_wait_for_resolv() fails.
[platform/upstream/curl.git] / Makefile.dist
1 #############################################################################
2 #                                  _   _ ____  _     
3 #  Project                     ___| | | |  _ \| |    
4 #                             / __| | | | |_) | |    
5 #                            | (__| |_| |  _ <| |___ 
6 #                             \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 2002, Daniel Stenberg, <daniel@haxx.se>, et al.
9 #
10 # In order to be useful for every potential user, curl and libcurl are
11 # dual-licensed under the MPL and the MIT/X-derivate licenses.
12 #
13 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
14 # copies of the Software, and permit persons to whom the Software is
15 # furnished to do so, under the terms of the MPL or the MIT/X-derivate
16 # licenses. You may pick one of these licenses.
17 #
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # KIND, either express or implied.
20 #
21 # $Id$
22 #############################################################################
23
24 all:
25         ./configure
26         make
27
28 ssl:
29         ./configure --with-ssl
30         make
31
32 borland:
33         cd lib & make -f Makefile.b32
34         cd src & make -f Makefile.b32
35
36 mingw32:
37         cd lib & make -f Makefile.m32 ZLIB=1
38         cd src & make -f Makefile.m32 ZLIB=1
39
40 mingw32-ssl:
41         cd lib & make -f Makefile.m32 SSL=1 ZLIB=1
42         cd src & make -f Makefile.m32 SSL=1 ZLIB=1
43
44 vc:
45         cd lib
46         nmake -f Makefile.vc6 cfg=release
47         cd ..\src
48         nmake -f Makefile.vc6
49
50 vc-ssl:
51         cd lib
52         nmake -f Makefile.vc6 cfg=release-ssl
53         cd ..\src
54         nmake -f Makefile.vc6 cfg=release-ssl
55
56 vc-ssl-dll:
57         cd lib
58         nmake -f Makefile.vc6 cfg=release-ssl-dll
59         cd ..\src
60         nmake -f Makefile.vc6
61
62 djgpp:
63         make -C lib -f Makefile.dj
64         make -C src -f Makefile.dj
65
66 cygwin:
67         ./configure
68         make
69
70 cygwin-ssl:
71         ./configure --with-ssl
72         make
73
74 unix: all
75
76 unix-ssl: ssl
77
78 linux: all
79
80 linux-ssl: ssl