turns out the new configure script wasn't looking in /usr/lib64 for FC3
boxes on amd64.  Patch attached.

        -I

Index: mythtv/configure
===================================================================
RCS file: /var/lib/mythcvs/mythtv/configure,v
retrieving revision 1.45
diff -u -r1.45 configure
--- mythtv/configure    9 Apr 2005 17:44:17 -0000       1.45
+++ mythtv/configure    11 Apr 2005 01:56:40 -0000
@@ -1615,10 +1615,12 @@
     firewire_cable_box="no"
     libiec1=`ls /usr/local/lib/libiec61883* 2> /dev/null | head -n 1`
     libiec2=`ls /usr/lib/libiec61883* 2> /dev/null | head -n 1`
-    if test x"$libiec1" != x"" -o x"$libiec2" != x"" ; then
+    libiec3=`ls /usr/lib64/libiec61883* 2> /dev/null | head -n 1`
+    if test x"$libiec1" != x"" -o x"$libiec2" != x"" -o x"$libiec3" != x"" ; then
         libraw1=`ls /usr/local/lib/libraw1394* 2> /dev/null | head -n 1`
         libraw2=`ls /usr/lib/libraw1394* 2> /dev/null | head -n 1`
-        if test x"$libraw1" != x"" -o x"$libraw2" != x"" ; then
+        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
             firewire_cable_box="yes"
         fi
     fi

_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to