Opened 19 years ago

Closed 18 years ago

#495 closed patch (fixed)

mythplugins configure disables mythbrowser

Reported by: dwilga@… Owned by: Isaac Richards
Priority: minor Milestone: unknown
Component: mythbrowser Version:
Severity: medium Keywords:
Cc: Ticket locked: no

Description

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."

Attachments (1)

mwb.txt (463 bytes) - added by dwilga@… 19 years ago.

Download all attachments as: .zip

Change History (2)

Changed 19 years ago by dwilga@…

Attachment: mwb.txt added

comment:1 Changed 18 years ago by danielk

Resolution: fixed
Status: newclosed

(In [7574]) Closes #495.

Check for khtml_part.h in more places, also synced has_library() to the one in mythtv/configure.

Note: See TracTickets for help on using tickets.