Opened 20 years ago
Closed 20 years ago
#495 closed patch (fixed)
mythplugins configure disables mythbrowser
Reported by: | 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)
Change History (2)
Note: See
TracTickets for help on using
tickets.
(In [7574]) Closes #495.
Check for khtml_part.h in more places, also synced has_library() to the one in mythtv/configure.