Ticket #4973: mythc3.patch

File mythc3.patch, 1.8 KB (added by arnonm@…, 16 years ago)

Replaces mythc2.patch - added full path to mythcontext.cpp

  • libs/libmyth/mythcontext.cpp

     
    370390            m_installlibdir = prefixDir.canonicalPath() + "/lib";
    371391    }
    372392
    373     VERBOSE(VB_IMPORTANT, QString("Using runtime prefix = %1, libdir = %2")
    374                           .arg(m_installprefix).arg(m_installlibdir));
     393    VERBOSE(VB_IMPORTANT, QString("m_installprefix= %1")
     394                          .arg(m_installprefix));
     395
     396    VERBOSE(VB_IMPORTANT, QString("m_installlibdir = %1")
     397                          .arg(m_installlibdir));
     398
     399    VERBOSE(VB_IMPORTANT, QString("prefixDir= %1")
     400                          .arg(prefixDir.canonicalPath()));
     401
    375402}
    376403
    377404MythContextPrivate::~MythContextPrivate()
     
    15001531
    15011532    d = new MythContextPrivate(this);
    15021533    assert(d);
     1534   
     1535
     1536   
     1537    VERBOSE(VB_IMPORTANT, QString("ShareDir = %1")
     1538                          .arg(GetShareDir()));
     1539   
     1540    VERBOSE(VB_IMPORTANT, QString("LibDir = %1")
     1541                          .arg(GetLibraryDir()));
     1542
     1543    VERBOSE(VB_IMPORTANT, QString("ThemesParentDir=%1")
     1544                          .arg(GetThemesParentDir()));
     1545
     1546    VERBOSE(VB_IMPORTANT, QString("PluginsDir=%1")
     1547                          .arg(GetPluginsDir()));
     1548
     1549    VERBOSE(VB_IMPORTANT, QString("TranslationsDir=%1")
     1550                          .arg(GetTranslationsDir()));
     1551
     1552    VERBOSE(VB_IMPORTANT, QString("FontsDir = %1")
     1553                          .arg(GetFontsDir()));
     1554
     1555    VERBOSE(VB_IMPORTANT, QString("FiltersDir = %1")
     1556                          .arg(GetFiltersDir()));
     1557
     1558    VERBOSE(VB_IMPORTANT, QString("ConfDir =%1")
     1559                          .arg(GetConfDir()));
     1560
    15031561}
    15041562
    15051563bool MythContext::Init(const bool gui, UPnp *UPnPclient,