Displaying 1 result from an estimated 1 matches for "9c0576e".
Did you mean:
9205766
2007 Oct 25
0
[PATCH] Fix logic in mad detection
...not be considered a hard requirement, as it's
absent in most distros due to patent problems.
Signed-off-by: Pavel Roskin <proski at gnu.org>
---
configure.ac | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/configure.ac b/configure.ac
index 918de8f..9c0576e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -189,19 +189,19 @@ fi
AC_ARG_ENABLE(mad,
AS_HELP_STRING([--enable-mad],
[enable mad audio (default=yes)])],
- enable_mad=$enableval,
- enable_mad="yes")
+ enable_mad=$enableval)
-if test "$enable_mad" = "yes"; th...