Codebase list volume-key / 5bb8881
Fix building against Python 3.8 Import NMU by Matthias Klose. Closes: 953316 Martin Pitt 4 years ago
3 changed file(s) with 23 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 volume-key (0.3.12-3.1) unstable; urgency=medium
1
2 * Non-maintainer upload.
3 * Call python3-config with --embed. Closes: #953316.
4
5 -- Matthias Klose <doko@debian.org> Fri, 13 Mar 2020 08:49:02 +0100
6
07 volume-key (0.3.12-3) unstable; urgency=medium
18
29 [ Jeremy Bicha ]
0 Index: b/configure.ac
1 ===================================================================
2 --- a/configure.ac
3 +++ b/configure.ac
4 @@ -173,8 +173,8 @@ else
5 # PYTHON3_{INCLUDES,CFLAGS,LIBS,LDFLAGS}
6 PYTHON3_INCLUDES=`${PYTHON3_CONFIG} --includes 2> /dev/null`
7 PYTHON3_CFLAGS=`${PYTHON3_CONFIG} --cflags 2> /dev/null`
8 - PYTHON3_LIBS=`${PYTHON3_CONFIG} --libs 2> /dev/null`
9 - PYTHON3_LDFLAGS=`${PYTHON3_CONFIG} --ldflags 2> /dev/null`
10 + PYTHON3_LIBS=`${PYTHON3_CONFIG} --libs --embed 2> /dev/null`
11 + PYTHON3_LDFLAGS=`${PYTHON3_CONFIG} --ldflags --embed 2> /dev/null`
12 AC_SUBST([PYTHON3_INCLUDES])
13 AC_SUBST([PYTHON3_CFLAGS])
14 AC_SUBST([PYTHON3_LIBS])
00 Revert-Switch-to-gpg2.patch
1 python3.8.diff