diff options
author | Ingo Klöcker <[email protected]> | 2024-01-16 08:53:39 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2024-01-16 08:53:39 +0000 |
commit | e3ae88267f03b435ec7d9e80ae1e2891e1f118e6 (patch) | |
tree | fbc3c359b061af261ad453f5375dc15b99e7750d /configure.ac | |
parent | doc: Add a deprecated warning to gpgme_op_delete. (diff) | |
download | gpgme-e3ae88267f03b435ec7d9e80ae1e2891e1f118e6.tar.gz gpgme-e3ae88267f03b435ec7d9e80ae1e2891e1f118e6.zip |
build: Update Python autoconf macro
* configure.ac: Call AX_PYTHON_DEVEL with new "optional" argument.
* m4/ax_python_devel.m4: Replace with current version from the autoconf
archive.
--
The new "optional" argument allows us to leave out one of our custom
changes.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9d551813..0e0b9d97 100644 --- a/configure.ac +++ b/configure.ac @@ -607,7 +607,7 @@ if test "$found_py" = "1"; then unset am_cv_python_pythondir unset am_cv_python_pyexecdir AM_PATH_PYTHON(mym4pythonver, [ - AX_PYTHON_DEVEL + AX_PYTHON_DEVEL([], [true]) if test "$PYTHON_VERSION"; then PYTHONS="$(echo $PYTHONS $PYTHON)" PYTHON_VERSIONS="$(echo $PYTHON_VERSIONS $PYTHON_VERSION)" |