Version: 1.0 (using KDE KDE 3.5.6) Installed from: Gentoo Packages OS: Linux checking if plugins should be compiled... yes checking if src should be compiled... yes configure: error: conditional "include_ALSA" was never defined. Usually this means the macro was only invoked conditionally. betelgeuse@pena /var/tmp/portage/app-cdr/k3b-1.0/work/k3b-1.0 $ ./configure --without-alsa | grep alsa configure: error: conditional "include_ALSA" was never defined. Usually this means the macro was only invoked conditionally. The downstream bug report is in https://bugs.gentoo.org/show_bug.cgi?id=152321 There you can find more information.
SVN commit 644100 by trueg: Always define the include_ALSA conditional. BUG: 143186 M +2 -2 configure.in.in --- trunk/extragear/multimedia/k3b/plugins/audiooutput/alsa/configure.in.in #644099:644100 @@ -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 ---------------