toolkit/crashreporter/google-breakpad/src/third_party/curl/curlver.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #ifndef __CURL_CURLVER_H
     2 #define __CURL_CURLVER_H
     3 /***************************************************************************
     4  *                                  _   _ ____  _
     5  *  Project                     ___| | | |  _ \| |
     6  *                             / __| | | | |_) | |
     7  *                            | (__| |_| |  _ <| |___
     8  *                             \___|\___/|_| \_\_____|
     9  *
    10  * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
    11  *
    12  * This software is licensed as described in the file COPYING, which
    13  * you should have received as part of this distribution. The terms
    14  * are also available at http://curl.haxx.se/docs/copyright.html.
    15  *
    16  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
    17  * copies of the Software, and permit persons to whom the Software is
    18  * furnished to do so, under the terms of the COPYING file.
    19  *
    20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
    21  * KIND, either express or implied.
    22  *
    23  * $Id: curlver.h,v 1.48 2009-08-12 11:24:52 bagder Exp $
    24  ***************************************************************************/
    26 /* This header file contains nothing but libcurl version info, generated by
    27    a script at release-time. This was made its own header file in 7.11.2 */
    29 /* This is the global package copyright */
    30 #define LIBCURL_COPYRIGHT "1996 - 2009 Daniel Stenberg, <daniel@haxx.se>."
    32 /* This is the version number of the libcurl package from which this header
    33    file origins: */
    34 #define LIBCURL_VERSION "7.19.7"
    36 /* The numeric version number is also available "in parts" by using these
    37    defines: */
    38 #define LIBCURL_VERSION_MAJOR 7
    39 #define LIBCURL_VERSION_MINOR 19
    40 #define LIBCURL_VERSION_PATCH 7
    42 /* This is the numeric version of the libcurl version number, meant for easier
    43    parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
    44    always follow this syntax:
    46          0xXXYYZZ
    48    Where XX, YY and ZZ are the main version, release and patch numbers in
    49    hexadecimal (using 8 bits each). All three numbers are always represented
    50    using two digits.  1.2 would appear as "0x010200" while version 9.11.7
    51    appears as "0x090b07".
    53    This 6-digit (24 bits) hexadecimal number does not show pre-release number,
    54    and it is always a greater number in a more recent release. It makes
    55    comparisons with greater than and less than work.
    56 */
    57 #define LIBCURL_VERSION_NUM 0x071307
    59 /*
    60  * This is the date and time when the full source package was created. The
    61  * timestamp is not stored in CVS, as the timestamp is properly set in the
    62  * tarballs by the maketgz script.
    63  *
    64  * The format of the date should follow this template:
    65  *
    66  * "Mon Feb 12 11:35:33 UTC 2007"
    67  */
    68 #define LIBCURL_TIMESTAMP "Wed Nov  4 12:34:59 UTC 2009"
    70 #endif /* __CURL_CURLVER_H */

mercurial