/usr/include/libgweather-3.0/libgweather/gweather-version.h is in libgweather-3-dev 3.18.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | /* gweather-version.h - libgweather versioning information
*
* This file is part of libgweather
* Copyright (C) 2014 Javier Jardón <jjardon@gnome.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Based on json-version from json-glib
* Authored by Emmanuele Bassi <ebassi@gnome.org>
* Adapted for libgweather by Javier Jardón <jjardon@gnome.org>
*/
#ifndef __GWEATHER_VERSION_H__
#define __GWEATHER_VERSION_H__
#if !(defined(IN_GWEATHER_H) || defined(GWEATHER_COMPILATION))
#error "gweather-version.h must not be included individually, include gweather.h instead"
#endif
/**
* SECTION:gweatherversion
* @short_description: libgweather version checking
*
* LibGweather provides macros to check the version of the library
* at compile-time
*/
/**
* GWEATHER_MAJOR_VERSION:
*
* LibGweather major version component (e.g. 1 if %GWEATHER_VERSION is 1.2.3)
*
* Since: 3.12
*/
#define GWEATHER_MAJOR_VERSION (3)
/**
* GWEATHER_MINOR_VERSION:
*
* LibGweather minor version component (e.g. 2 if %GWEATHER_VERSION is 1.2.3)
*
* Since: 3.12
*/
#define GWEATHER_MINOR_VERSION (18)
/**
* GWEATHER_MICRO_VERSION:
*
* LibGweather micro version component (e.g. 3 if %GWEATHER_VERSION is 1.2.3)
*
* Since: 3.12
*/
#define GWEATHER_MICRO_VERSION (1)
/**
* GWEATHER_VERSION
*
* LibGweather version.
*
* Since: 3.12
*/
#define GWEATHER_VERSION (3.18.1)
/**
* GWEATHER_VERSION_S:
*
* LibGweather version, encoded as a string, useful for printing and
* concatenation.
*
* Since: 3.12
*/
#define GWEATHER_VERSION_S "3.18.1"
/**
* GWEATHER_VERSION_HEX:
*
* LibGweather version, encoded as an hexadecimal number, useful for
* integer comparisons.
*
* Since: 3.12
*/
#define GWEATHER_VERSION_HEX (GWEATHER_MAJOR_VERSION << 24 | \
GWEATHER_MINOR_VERSION << 16 | \
GWEATHER_MICRO_VERSION << 8)
/**
* GWEATHER_CHECK_VERSION:
* @major: required major version
* @minor: required minor version
* @micro: required micro version
*
* Compile-time version checking. Evaluates to %TRUE if the version
* of LibGweather is greater than the required one.
*
* Since: 3.12
*/
#define GWEATHER_CHECK_VERSION(major,minor,micro) \
(GWEATHER_MAJOR_VERSION > (major) || \
(GWEATHER_MAJOR_VERSION == (major) && GWEATHER_MINOR_VERSION > (minor)) || \
(GWEATHER_MAJOR_VERSION == (major) && GWEATHER_MINOR_VERSION == (minor) && \
GWEATHER_MICRO_VERSION >= (micro)))
#endif /* __GWEATHER_VERSION_H__ */
|