~ubuntu-branches/ubuntu/lucid/curl/lucid-201101212007

« back to all changes in this revision

Viewing changes to include/curl/curlver.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-05-16 15:16:54 UTC
  • mto: (3.1.1 lenny) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: james.westby@ubuntu.com-20070516151654-x9nkigtr2j0i8d0v
Tags: upstream-7.16.2
ImportĀ upstreamĀ versionĀ 7.16.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 *                            | (__| |_| |  _ <| |___
8
8
 *                             \___|\___/|_| \_\_____|
9
9
 *
10
 
 * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
 
10
 * Copyright (C) 1998 - 2007, 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.21 2006-06-12 07:24:14 bagder Exp $
 
23
 * $Id: curlver.h,v 1.26 2007-02-12 11:53:35 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.5"
 
31
#define LIBCURL_VERSION "7.16.2"
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
 
#define LIBCURL_VERSION_MINOR 15
37
 
#define LIBCURL_VERSION_PATCH 5
 
36
#define LIBCURL_VERSION_MINOR 16
 
37
#define LIBCURL_VERSION_PATCH 2
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 0x070f05
 
54
#define LIBCURL_VERSION_NUM 0x071002
 
55
 
 
56
/*
 
57
 * This is the date and time when the full source package was created. The
 
58
 * timestamp is not stored in CVS, as the timestamp is properly set in the
 
59
 * tarballs by the maketgz script.
 
60
 *
 
61
 * The format of the date should follow this template:
 
62
 *
 
63
 * "Mon Feb 12 11:35:33 UTC 2007"
 
64
 */
 
65
#define LIBCURL_TIMESTAMP "Wed Apr 11 13:12:42 UTC 2007"
55
66
 
56
67
#endif /* __CURL_CURLVER_H */