| Summary: | ./configure --without-alsa fails with configure: error: conditional "include_ALSA" was never defined. | ||
|---|---|---|---|
| Product: | [Applications] k3b | Reporter: | Petteri Räty <bugzillas> |
| Component: | general | Assignee: | Sebastian Trueg <trueg> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Petteri Räty
2007-03-18 21:00:11 UTC
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 --------------- |