Codebase list alsa-lib / 9e834f7
Drop python 3.8 patch, now included upstream. Jordi Mallach 3 years ago
3 changed file(s) with 1 addition(s) and 22 deletion(s). Raw diff Collapse all Expand all
11
22 * New upstream release.
33 * Acknowledge all previous NMUs.
4 * Drop python 3.8 patch, now included upstream.
45
56 -- Jordi Mallach <jordi@debian.org> Thu, 20 Aug 2020 19:41:40 +0200
67
+0
-21
debian/patches/python3.8.diff less more
0 Description: fixes the build with python 3.8
1 Upstream: https://github.com/alsa-project/alsa-lib/issues/33
2 Author: Matthias Klose
3 Bug-Debian: https://bugs.debian.org/953568
4 Reviewed-By: Francisco Vilmar Cardoso Ruviaro <francisco.ruviaro@riseup.net>
5 Last-Update: 2020-06-10
6
7 --- alsa-lib-1.2.2.orig/configure.ac
8 +++ alsa-lib-1.2.2/configure.ac
9 @@ -423,7 +423,10 @@ if test "$build_python" = "yes" -a "$bui
10 pythonlibs0=
11 pythoninc0=
12 if test "$build_python2" != "yes"; then
13 - pythonlibs0=$(python3-config --libs)
14 + pythonlibs0=$(python3-config --libs --embed 2> /dev/null)
15 + if test -z "$pythonlibs0"; then
16 + pythonlibs0=$(python3-config --libs)
17 + fi
18 pythoninc0=$(python3-config --includes)
19 fi
20 if test -z "$pythonlibs0"; then
00 0001-Enabled-extended-namehints-in-alsa.conf.patch
1 python3.8.diff