jpayne@69
|
1 /* MIT License
|
jpayne@69
|
2 *
|
jpayne@69
|
3 * Copyright (c) Daniel Stenberg
|
jpayne@69
|
4 *
|
jpayne@69
|
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
|
jpayne@69
|
6 * of this software and associated documentation files (the "Software"), to deal
|
jpayne@69
|
7 * in the Software without restriction, including without limitation the rights
|
jpayne@69
|
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
jpayne@69
|
9 * copies of the Software, and to permit persons to whom the Software is
|
jpayne@69
|
10 * furnished to do so, subject to the following conditions:
|
jpayne@69
|
11 *
|
jpayne@69
|
12 * The above copyright notice and this permission notice (including the next
|
jpayne@69
|
13 * paragraph) shall be included in all copies or substantial portions of the
|
jpayne@69
|
14 * Software.
|
jpayne@69
|
15 *
|
jpayne@69
|
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
jpayne@69
|
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
jpayne@69
|
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
jpayne@69
|
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
jpayne@69
|
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
jpayne@69
|
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
jpayne@69
|
22 * SOFTWARE.
|
jpayne@69
|
23 *
|
jpayne@69
|
24 * SPDX-License-Identifier: MIT
|
jpayne@69
|
25 */
|
jpayne@69
|
26
|
jpayne@69
|
27 #ifndef ARES__VERSION_H
|
jpayne@69
|
28 #define ARES__VERSION_H
|
jpayne@69
|
29
|
jpayne@69
|
30 /* This is the global package copyright */
|
jpayne@69
|
31 #define ARES_COPYRIGHT "2004 - 2024 Daniel Stenberg, <daniel@haxx.se>."
|
jpayne@69
|
32
|
jpayne@69
|
33 #define ARES_VERSION_MAJOR 1
|
jpayne@69
|
34 #define ARES_VERSION_MINOR 34
|
jpayne@69
|
35 #define ARES_VERSION_PATCH 4
|
jpayne@69
|
36 #define ARES_VERSION_STR "1.34.4"
|
jpayne@69
|
37
|
jpayne@69
|
38 /* NOTE: We cannot make the version string a C preprocessor stringify operation
|
jpayne@69
|
39 * due to assumptions made by integrators that aren't properly using
|
jpayne@69
|
40 * pkgconf or cmake and are doing their own detection based on parsing
|
jpayne@69
|
41 * this header */
|
jpayne@69
|
42
|
jpayne@69
|
43 #define ARES_VERSION \
|
jpayne@69
|
44 ((ARES_VERSION_MAJOR << 16) | (ARES_VERSION_MINOR << 8) | \
|
jpayne@69
|
45 (ARES_VERSION_PATCH))
|
jpayne@69
|
46
|
jpayne@69
|
47 #endif
|