Opened 21 years ago
Closed 21 years ago
#528 closed patch (fixed)
patch for SVN 7578 to fix mythwelcome and mythshutdown compile problem
| Reported by: | Owned by: | Isaac Richards | |
|---|---|---|---|
| Priority: | blocker | Milestone: | unknown |
| Component: | mythtv | Version: | |
| Severity: | high | Keywords: | |
| Cc: | Ticket locked: | no |
Description
Index: programs/mythwelcome/welcomedialog.h
===================================================================
--- programs/mythwelcome/welcomedialog.h (revision 7578)
+++ programs/mythwelcome/welcomedialog.h (working copy)
@@ -4,7 +4,7 @@
#include <iostream>
using namespace std;
-#include <mythtv/mythdialogs.h>
+#include <mythdialogs.h>
class WelcomeDialog : public MythThemedDialog
{
Index: programs/mythwelcome/welcomesettings.h
===================================================================
--- programs/mythwelcome/welcomesettings.h (revision 7578)
+++ programs/mythwelcome/welcomesettings.h (working copy)
@@ -1,7 +1,7 @@
#ifndef WELCOMESETTINGS_H
#define WELCOMESETTINGS_H
-#include <mythtv/settings.h>
+#include <settings.h>
class MythWelcomeSettings: virtual public ConfigurationWizard {
Index: programs/mythwelcome/welcomesettings.cpp
===================================================================
--- programs/mythwelcome/welcomesettings.cpp (revision 7578)
+++ programs/mythwelcome/welcomesettings.cpp (working copy)
@@ -1,4 +1,4 @@
-#include "mythtv/mythcontext.h"
+#include <mythcontext.h>
#include <unistd.h>
Index: programs/mythshutdown/main.cpp
===================================================================
--- programs/mythshutdown/main.cpp (revision 7578)
+++ programs/mythshutdown/main.cpp (working copy)
@@ -6,9 +6,9 @@
using namespace std;
#include <unistd.h>
-#include <mythtv/exitcodes.h>
-#include <mythtv/mythcontext.h>
-#include <mythtv/mythdbcon.h>
+#include <exitcodes.h>
+#include <mythcontext.h>
+#include <mythdbcon.h>
int lockShutdown()
{
Note:
See TracTickets
for help on using tickets.

fixed by [7580].