~ubuntu-branches/ubuntu/gutsy/curl/gutsy

« back to all changes in this revision

Viewing changes to include/curl/curlver.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-06-29 15:04:24 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20060629150424-be178abcwks1n519
Tags: upstream-7.15.4
ImportĀ upstreamĀ versionĀ 7.15.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
11
11
 *
12
12
 * This software is licensed as described in the file COPYING, which
13
13
 * you should have received as part of this distribution. The terms
20
20
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
21
 * KIND, either express or implied.
22
22
 *
23
 
 * $Id: curlver.h,v 1.17 2005/10/14 21:21:52 bagder Exp $
 
23
 * $Id: curlver.h,v 1.20 2006-03-20 09:03:10 bagder Exp $
24
24
 ***************************************************************************/
25
25
 
26
26
/* This header file contains nothing but libcurl version info, generated by
28
28
 
29
29
/* This is the version number of the libcurl package from which this header
30
30
   file origins: */
31
 
#define LIBCURL_VERSION "7.15.1"
 
31
#define LIBCURL_VERSION "7.15.4"
32
32
 
33
33
/* The numeric version number is also available "in parts" by using these
34
34
   defines: */
35
35
#define LIBCURL_VERSION_MAJOR 7
36
36
#define LIBCURL_VERSION_MINOR 15
37
 
#define LIBCURL_VERSION_PATCH 1
 
37
#define LIBCURL_VERSION_PATCH 4
38
38
 
39
39
/* This is the numeric version of the libcurl version number, meant for easier
40
40
   parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
51
51
   and it is always a greater number in a more recent release. It makes
52
52
   comparisons with greater than and less than work.
53
53
*/
54
 
#define LIBCURL_VERSION_NUM 0x070f01
 
54
#define LIBCURL_VERSION_NUM 0x070f04
55
55
 
56
56
#endif /* __CURL_CURLVER_H */