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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/crashreporter/google-breakpad/src/third_party/curl/curlver.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,70 @@
     1.4 +#ifndef __CURL_CURLVER_H
     1.5 +#define __CURL_CURLVER_H
     1.6 +/***************************************************************************
     1.7 + *                                  _   _ ____  _
     1.8 + *  Project                     ___| | | |  _ \| |
     1.9 + *                             / __| | | | |_) | |
    1.10 + *                            | (__| |_| |  _ <| |___
    1.11 + *                             \___|\___/|_| \_\_____|
    1.12 + *
    1.13 + * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
    1.14 + *
    1.15 + * This software is licensed as described in the file COPYING, which
    1.16 + * you should have received as part of this distribution. The terms
    1.17 + * are also available at http://curl.haxx.se/docs/copyright.html.
    1.18 + *
    1.19 + * You may opt to use, copy, modify, merge, publish, distribute and/or sell
    1.20 + * copies of the Software, and permit persons to whom the Software is
    1.21 + * furnished to do so, under the terms of the COPYING file.
    1.22 + *
    1.23 + * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
    1.24 + * KIND, either express or implied.
    1.25 + *
    1.26 + * $Id: curlver.h,v 1.48 2009-08-12 11:24:52 bagder Exp $
    1.27 + ***************************************************************************/
    1.28 +
    1.29 +/* This header file contains nothing but libcurl version info, generated by
    1.30 +   a script at release-time. This was made its own header file in 7.11.2 */
    1.31 +
    1.32 +/* This is the global package copyright */
    1.33 +#define LIBCURL_COPYRIGHT "1996 - 2009 Daniel Stenberg, <daniel@haxx.se>."
    1.34 +
    1.35 +/* This is the version number of the libcurl package from which this header
    1.36 +   file origins: */
    1.37 +#define LIBCURL_VERSION "7.19.7"
    1.38 +
    1.39 +/* The numeric version number is also available "in parts" by using these
    1.40 +   defines: */
    1.41 +#define LIBCURL_VERSION_MAJOR 7
    1.42 +#define LIBCURL_VERSION_MINOR 19
    1.43 +#define LIBCURL_VERSION_PATCH 7
    1.44 +
    1.45 +/* This is the numeric version of the libcurl version number, meant for easier
    1.46 +   parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
    1.47 +   always follow this syntax:
    1.48 +
    1.49 +         0xXXYYZZ
    1.50 +
    1.51 +   Where XX, YY and ZZ are the main version, release and patch numbers in
    1.52 +   hexadecimal (using 8 bits each). All three numbers are always represented
    1.53 +   using two digits.  1.2 would appear as "0x010200" while version 9.11.7
    1.54 +   appears as "0x090b07".
    1.55 +
    1.56 +   This 6-digit (24 bits) hexadecimal number does not show pre-release number,
    1.57 +   and it is always a greater number in a more recent release. It makes
    1.58 +   comparisons with greater than and less than work.
    1.59 +*/
    1.60 +#define LIBCURL_VERSION_NUM 0x071307
    1.61 +
    1.62 +/*
    1.63 + * This is the date and time when the full source package was created. The
    1.64 + * timestamp is not stored in CVS, as the timestamp is properly set in the
    1.65 + * tarballs by the maketgz script.
    1.66 + *
    1.67 + * The format of the date should follow this template:
    1.68 + *
    1.69 + * "Mon Feb 12 11:35:33 UTC 2007"
    1.70 + */
    1.71 +#define LIBCURL_TIMESTAMP "Wed Nov  4 12:34:59 UTC 2009"
    1.72 +
    1.73 +#endif /* __CURL_CURLVER_H */

mercurial