summaryrefslogtreecommitdiff
blob: dc3d063136cbbde74c66afe9bd21ccda395e1316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
diff -aur muine-0.8.2-orig/configure muine-0.8.2/configure
--- muine-0.8.2-orig/configure	2005-02-07 12:18:26.000000000 -0500
+++ muine-0.8.2/configure	2005-04-02 12:29:34.000000000 -0500
@@ -21620,9 +21620,10 @@
   enableval="$enable_faad2"
 
 else
-  have_faad2=yes
+  enable_faad2=yes
 fi;
-if test "x$have_faad2" = "xyes"; then
+
+if test "x$enable_faad2" = "xyes"; then
 	if test "${ac_cv_header_mp4ff_h+set}" = set; then
   echo "$as_me:$LINENO: checking for mp4ff.h" >&5
 echo $ECHO_N "checking for mp4ff.h... $ECHO_C" >&6
diff -aur muine-0.8.2-orig/configure.in muine-0.8.2/configure.in
--- muine-0.8.2-orig/configure.in	2005-02-07 12:18:08.000000000 -0500
+++ muine-0.8.2/configure.in	2005-04-02 12:29:24.000000000 -0500
@@ -112,8 +112,9 @@
 AC_SUBST(ID3TAG_LIBS)
 
 dnl Check for FAAD 
-AC_ARG_ENABLE(faad2, [  --disable-faad2         Disable AAC support],,have_faad2=yes)
-if test "x$have_faad2" = "xyes"; then
+AC_ARG_ENABLE(faad2, [  --disable-faad2         Disable AAC support],,enable_faad2=yes)
+
+if test "x$enable_faad2" = "xyes"; then
 	AC_CHECK_HEADER(mp4ff.h, faad2_detect=yes, faad_detect=no)
 	if test "x$faad2_detect" = "xyes"; then
 		FAAD_LIBS="-lmp4ff -lfaad"