Planeshift

curlver.h

Go to the documentation of this file.
00001 #ifndef __CURL_CURLVER_H
00002 #define __CURL_CURLVER_H
00003 /***************************************************************************
00004  *                                  _   _ ____  _
00005  *  Project                     ___| | | |  _ \| |
00006  *                             / __| | | | |_) | |
00007  *                            | (__| |_| |  _ <| |___
00008  *                             \___|\___/|_| \_\_____|
00009  *
00010  * Copyright (C) 1998 - 2009, Daniel Stenberg, <[email protected]>, et al.
00011  *
00012  * This software is licensed as described in the file COPYING, which
00013  * you should have received as part of this distribution. The terms
00014  * are also available at http://curl.haxx.se/docs/copyright.html.
00015  *
00016  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00017  * copies of the Software, and permit persons to whom the Software is
00018  * furnished to do so, under the terms of the COPYING file.
00019  *
00020  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00021  * KIND, either express or implied.
00022  *
00023  * $Id: curlver.h 8795 2013-09-14 06:15:05Z joelyon $
00024  ***************************************************************************/
00025 
00026 /* This header file contains nothing but libcurl version info, generated by
00027    a script at release-time. This was made its own header file in 7.11.2 */
00028 
00029 /* This is the global package copyright */
00030 #define LIBCURL_COPYRIGHT "1996 - 2009 Daniel Stenberg, <[email protected]>."
00031 
00032 /* This is the version number of the libcurl package from which this header
00033    file origins: */
00034 #define LIBCURL_VERSION "7.19.7"
00035 
00036 /* The numeric version number is also available "in parts" by using these
00037    defines: */
00038 #define LIBCURL_VERSION_MAJOR 7
00039 #define LIBCURL_VERSION_MINOR 19
00040 #define LIBCURL_VERSION_PATCH 7
00041 
00042 /* This is the numeric version of the libcurl version number, meant for easier
00043    parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
00044    always follow this syntax:
00045 
00046          0xXXYYZZ
00047 
00048    Where XX, YY and ZZ are the main version, release and patch numbers in
00049    hexadecimal (using 8 bits each). All three numbers are always represented
00050    using two digits.  1.2 would appear as "0x010200" while version 9.11.7
00051    appears as "0x090b07".
00052 
00053    This 6-digit (24 bits) hexadecimal number does not show pre-release number,
00054    and it is always a greater number in a more recent release. It makes
00055    comparisons with greater than and less than work.
00056 */
00057 #define LIBCURL_VERSION_NUM 0x071307
00058 
00059 /*
00060  * This is the date and time when the full source package was created. The
00061  * timestamp is not stored in CVS, as the timestamp is properly set in the
00062  * tarballs by the maketgz script.
00063  *
00064  * The format of the date should follow this template:
00065  *
00066  * "Mon Feb 12 11:35:33 UTC 2007"
00067  */
00068 #define LIBCURL_TIMESTAMP "Wed Nov  4 12:34:59 UTC 2009"
00069 
00070 #endif /* __CURL_CURLVER_H */