diff options
author | 2005-12-13 09:36:41 +0000 | |
---|---|---|
committer | 2005-12-13 09:36:41 +0000 | |
commit | 75f902c30344aa3e50e743a048486d5d9355dfae (patch) | |
tree | 5d8023b9fe7e23cd48a2c314bdceac30f09b3945 /app-cdr/k3b/files | |
parent | Adding license for Sun Web Services Developer Pack (diff) | |
download | gentoo-2-75f902c30344aa3e50e743a048486d5d9355dfae.tar.gz gentoo-2-75f902c30344aa3e50e743a048486d5d9355dfae.tar.bz2 gentoo-2-75f902c30344aa3e50e743a048486d5d9355dfae.zip |
Add patch to fix ALSA conditional, see bug #115379. Issue fixed in upstream SVN.
(Portage version: 2.0.53)
Diffstat (limited to 'app-cdr/k3b/files')
-rw-r--r-- | app-cdr/k3b/files/k3b-0.12.9-conditional.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-cdr/k3b/files/k3b-0.12.9-conditional.patch b/app-cdr/k3b/files/k3b-0.12.9-conditional.patch new file mode 100644 index 000000000000..01f2fda363f1 --- /dev/null +++ b/app-cdr/k3b/files/k3b-0.12.9-conditional.patch @@ -0,0 +1,26 @@ +AM_CONDITIONAL should be always called unconditionally, or automake +conditionals make ./configure step fail. + +Move AM_CONDITIONAL for include_ALSA in global scope. + +See Gentoo Bug #115379. + +Index: plugins/audiooutput/alsa/configure.in.in +=================================================================== +--- plugins/audiooutput/alsa/configure.in.in (revision 488109) ++++ plugins/audiooutput/alsa/configure.in.in (revision 488116) +@@ -55,7 +55,6 @@ + fi + + AC_SUBST(LIBASOUND) +- AM_CONDITIONAL(include_ALSA, [test "x$have_alsa_0_9" = xyes || test "x$have_alsa_1" = xyes]) + ]) + + AC_ARG_WITH(alsa, +@@ -72,4 +71,6 @@ + fi + fi + ++AM_CONDITIONAL(include_ALSA, [test "x$have_alsa_0_9" = xyes || test "x$have_alsa_1" = xyes]) ++ + dnl --------- ALSA CHECK END --------------- |