diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2017-03-28 16:30:25 +0200 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2017-03-28 16:34:22 +0200 |
commit | 1fcb3b40c24d57a76e376c3bdb58f5b43e1f9b55 (patch) | |
tree | 2724c42fcc666693ae3a5a77b9cb63ec411c18b6 /libnm-util | |
parent | aac581d4ec0ebd843e099f4fc6d0b591ef242a1c (diff) | |
download | NetworkManager-1fcb3b40c24d57a76e376c3bdb58f5b43e1f9b55.tar.gz |
release: bump version to 1.9.0 (development)1.9.0-dev
Diffstat (limited to 'libnm-util')
-rw-r--r-- | libnm-util/nm-version.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libnm-util/nm-version.h b/libnm-util/nm-version.h index d4c66ea011..7173bc6ba3 100644 --- a/libnm-util/nm-version.h +++ b/libnm-util/nm-version.h @@ -132,4 +132,18 @@ # define NM_AVAILABLE_IN_1_8 #endif +#if NM_VERSION_MIN_REQUIRED >= NM_VERSION_1_10 +# define NM_DEPRECATED_IN_1_10 G_DEPRECATED +# define NM_DEPRECATED_IN_1_10_FOR(f) G_DEPRECATED_FOR(f) +#else +# define NM_DEPRECATED_IN_1_10 +# define NM_DEPRECATED_IN_1_10_FOR(f) +#endif + +#if NM_VERSION_MAX_ALLOWED < NM_VERSION_1_10 +# define NM_AVAILABLE_IN_1_10 G_UNAVAILABLE(1,10) +#else +# define NM_AVAILABLE_IN_1_10 +#endif + #endif /* NM_VERSION_H */ |