[mythtv-commits] Ticket #495: mythplugins configure disables mythbrowser

MythTV mythtv at cvs.mythtv.org
Wed Oct 19 13:50:20 UTC 2005


#495: mythplugins configure disables mythbrowser
----------------------------------+-----------------------------------------
 Reporter:  dwilga at mtholyoke.edu  |       Owner:  ijr
     Type:  patch                 |      Status:  new
 Priority:  minor                 |   Milestone:     
Component:  mythbrowser           |     Version:     
 Severity:  medium                |  ----------------------------------+-----------------------------------------
 The configure script for mythbrowser looks for khtml_part.h in two places,
 but fails to look for just "khtml_part.h" by itself, so it wasn't finding
 where Mandrake installs the file, in /usr/include. This patch fixes the
 problem.

 {{{
 Index: configure
 ===================================================================
 --- configure   (revision 7526)
 +++ configure   (working copy)
 @@ -400,6 +400,9 @@
          if has_header /opt/kde3/include/khtml_part.h ; then
             hasit="yes"
          fi
 +        if has_header khtml_part.h ; then
 +           hasit="yes"
 +        fi
     fi
     if test "$hasit" = "no" ; then
         echo "Disabling MythBrowser due to missing KDE development
 packages."
 }}}

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/495>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list