summaryrefslogtreecommitdiff
path: root/systemd/id128.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-05-08 21:08:14 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2015-07-05 14:19:20 -0400
commit7b3e876ddef01e9f17ef56ea371074be2ee90139 (patch)
treea7b17831bb98c9cfc454b03a529a05024cdabe5d /systemd/id128.c
parentcfcc1870673b08d67af2e6d2de94959fb5df8660 (diff)
downloadpython-systemd-7b3e876ddef01e9f17ef56ea371074be2ee90139.tar.gz
systemd-python: add __version__ strings
Diffstat (limited to 'systemd/id128.c')
-rw-r--r--systemd/id128.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/systemd/id128.c b/systemd/id128.c
index 1c2fe5d..ec1d9fb 100644
--- a/systemd/id128.c
+++ b/systemd/id128.c
@@ -19,8 +19,6 @@
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
-#include <stdbool.h>
-
#include <Python.h>
#include <systemd/sd-messages.h>
@@ -126,6 +124,7 @@ PyMODINIT_FUNC initid128(void) {
#define JOINER ;
#include "id128-constants.h"
#undef JOINER
+ PyModule_AddStringConstant(m, "__version__", PACKAGE_VERSION);
}
#else
@@ -149,7 +148,7 @@ PyMODINIT_FUNC PyInit_id128(void) {
#define JOINER ||
#include "id128-constants.h"
#undef JOINER
- false) {
+ PyModule_AddStringConstant(m, "__version__", PACKAGE_VERSION)) {
Py_DECREF(m);
return NULL;
}