summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-09-06 18:34:01 +0100
committerSimon McVittie <smcv@collabora.com>2022-09-06 18:34:01 +0100
commitd042a2d02cd3c7957e02047576abbccbb7300885 (patch)
tree19600d78076a92d5e74470f17b44c4a7d23666b5
parentec04e0630abb1adbd34fc84279fb8ab3e98d7f97 (diff)
downloaddbus-python-d042a2d02cd3c7957e02047576abbccbb7300885.tar.gz
build: Remove vestigial macros
These have not been used since commit e443d3b5 "Use AX_IS_RELEASE with the micro-version policy". Signed-off-by: Simon McVittie <smcv@collabora.com>
-rw-r--r--configure.ac14
1 files changed, 1 insertions, 13 deletions
diff --git a/configure.ac b/configure.ac
index 02b7714..0236ee5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,14 +3,8 @@ AC_PREREQ(2.59c)
# Copyright 2006-2022 Collabora Ltd.
# SPDX-License-Identifier: MIT
-dnl The dbus-python version number
-m4_define(dbus_python_major_version, 1)
-m4_define(dbus_python_minor_version, 2)
dnl Micro version is odd for non-releases
-m4_define(dbus_python_micro_version, 19)
-
-AC_INIT([dbus-python],
- dbus_python_major_version.dbus_python_minor_version.dbus_python_micro_version,
+AC_INIT([dbus-python], [1.2.19],
[https://gitlab.freedesktop.org/dbus/dbus-python/-/issues/new])
AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
@@ -25,12 +19,6 @@ m4_pattern_forbid([^AX_(COMPILER_FLAGS|IS_RELEASE|PYTHON_DEVEL|PYTHON_MODULE)\b]
AM_MAINTAINER_MODE([enable])
AX_IS_RELEASE([micro-version])
-AC_DEFINE(DBUS_PYTHON_MAJOR_VERSION, dbus_python_major_version, [dbus-python major version])
-AC_SUBST(DBUS_PYTHON_MAJOR_VERSION, dbus_python_major_version)
-AC_DEFINE(DBUS_PYTHON_MINOR_VERSION, dbus_python_minor_version, [dbus-python minor version])
-AC_SUBST(DBUS_PYTHON_MINOR_VERSION, dbus_python_minor_version)
-AC_DEFINE(DBUS_PYTHON_MICRO_VERSION, dbus_python_micro_version, [dbus-python micro version])
-AC_SUBST(DBUS_PYTHON_MICRO_VERSION, dbus_python_micro_version)
AC_CONFIG_SRCDIR([dbus_bindings/module.c])
AC_CONFIG_HEADERS(config.h)