[mythtv] Configure Script & 64bit Libraries

Chris Pinkham cpinkham at bc2va.org
Thu Apr 14 20:11:21 UTC 2005


> Patch attached. My editor trims trailing whitespace from lines and I think 
> that is the cause of the differences on some lines which were unrelated to my 
> changes.

Didn't look over this whole patch, but looks like there's a small bug right here:

         libraw3=`ls /usr/lib64/libraw1394* 2> /dev/null | head -n 1`
-        if test x"$libraw1" != x"" -o x"$libraw2" != x"" -o x"$libraw3" != x"" ; then
+        libraw3=`ls /usr/local/lib64/libraw1394* 2> /dev/null | head -n 1`
+        if test x"$libraw1" != x"" -o x"$libraw2" != x"" -o x"$libraw3" != x"" -o x"$libraw4" != x"" ; then
             firewire_cable_box="yes"
         fi

You duplicate libraw3 instead of setting libraw4 but then test for libraw4.

-- 
Chris



More information about the mythtv-dev mailing list