diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2007-03-25 18:25:25 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2007-03-25 18:25:25 +0000 |
commit | 8924dde86c8d95a09be398acbaa110277a2b1bda (patch) | |
tree | 32425bfef5dbc187b561f8a9b1f209492116a955 /app-cdr/k3b/files | |
parent | patch added; ready for VDR-1.5.x (diff) | |
download | historical-8924dde86c8d95a09be398acbaa110277a2b1bda.tar.gz historical-8924dde86c8d95a09be398acbaa110277a2b1bda.tar.bz2 historical-8924dde86c8d95a09be398acbaa110277a2b1bda.zip |
Fix alsa configure issue, closes bug 152321, patch from upstream SVN commit.
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'app-cdr/k3b/files')
-rw-r--r-- | app-cdr/k3b/files/k3b-1.0-alsa-fix.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app-cdr/k3b/files/k3b-1.0-alsa-fix.patch b/app-cdr/k3b/files/k3b-1.0-alsa-fix.patch new file mode 100644 index 000000000000..431242b7d0d6 --- /dev/null +++ b/app-cdr/k3b/files/k3b-1.0-alsa-fix.patch @@ -0,0 +1,19 @@ +diff -ur k3b-1.0.orig/plugins/audiooutput/alsa/configure.in.in k3b-1.0/plugins/audiooutput/alsa/configure.in.in +--- k3b-1.0.orig/plugins/audiooutput/alsa/configure.in.in 2007-03-25 19:13:45.000000000 +0100 ++++ k3b-1.0/plugins/audiooutput/alsa/configure.in.in 2007-03-25 19:14:09.000000000 +0100 +@@ -5,8 +5,6 @@ + PKG_CHECK_MODULES([ALSA], [alsa >= 0.9], [have_alsa=yes], [have_alsa=no]) + AC_SUBST([ALSA_CFLAGS]) + AC_SUBST([ALSA_LIBS]) +- +- AM_CONDITIONAL(include_ALSA, [test "x$have_alsa" = "xyes"]) + ]) + + AC_ARG_WITH(alsa, +@@ -23,4 +21,6 @@ + fi + fi + ++AM_CONDITIONAL(include_ALSA, [test "x$have_alsa" = "xyes"]) ++ + dnl --------- ALSA CHECK END --------------- |