[Muine] Small fix to faad2 configure.in stuff.



Hey,

there was a slight problem in the faad2 configure.in stuff I wrote,
where I was using $with_faad2, instead of $enable_faad2 and this broke
things slightly when specifying --enable-faad2 or --disable-faad2 on the
configure line. Patch attached that fixes this.

-pete

-- 
Peter Johanson
<latexer gentoo org>
Index: configure.in
===================================================================
RCS file: /cvs/gnome/muine/configure.in,v
retrieving revision 1.121
diff -a -u -r1.121 configure.in
--- configure.in	14 Feb 2005 11:32:07 -0000	1.121
+++ configure.in	2 Apr 2005 17:54:03 -0000
@@ -112,8 +112,8 @@
 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"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]