Package: autoconf-archive / 20220903-3
Metadata
Package | Version | Patches format |
---|---|---|
autoconf-archive | 20220903-3 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
0001 Fix AX_HAVE_QT.patch | (download) |
m4/ax_have_qt.m4 |
6 3 + 3 - 0 ! |
fix ax_have_qt The AX_HAVE_QT macro uses an uninitialized shell variable am_have_qt_qmexe. Fix it. |
0002 Fix ax_python_devel serial 32 fails with current pyt.patch | (download) |
m4/ax_python_devel.m4 |
4 2 + 2 - 0 ! |
fix ax_python_devel serial 32 fails with current python3 The faulty code was introduce in commit df89f6cdaade38f3c1c9987be0c5a57c96fc1730 https://github.com/autoconf-archive/autoconf-archive/commit/df89f6cdaade38f3c1c9987be0c5a57c96fc1730 The current code tuple(sys.version_info) gives the 5-tuple (3, 10, 7, 'final', 0) while the former code sys.version.split()[0] would give the 3-tuple (3, 10, 7). So, at first glance, the current code tuple(sys.version_info) should be replaced by tuple(sys.version_info)[:3]. A patch that applied to the current ax_python_devel serial 32 is attached. |
1