Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: MythTV: Dev

0.21-fixes Windows port plugins installation failed

 

 

MythTV dev RSS feed   Index | Next | Previous | View Threaded


termant at gmail

May 31, 2009, 7:17 AM

Post #1 of 4 (1172 views)
Permalink
0.21-fixes Windows port plugins installation failed

Hi.

I have tried to compile MythTV 0.21-fixes with win32-packager.pl script.
Processing the script failed giving the following error message:

COMMENTS:------------------------------
COMMENTS:PLUGINS! make install
COMMENTS:------------------------------

shell:C:\MSys\1.0\bin\bash.exe -c "( export
PATH=/bin:/mingw/bin:$PATH;source /C
/mythtv/qt3_env.sh;cd /C/mythtv/mythplugins;make install) 2>&1 "
cd mythvideo && \
qmake mythvideo.pro -o Makefile "QMAKE=C:/MSys/1.0/qt-3.3.x-p8/bin/qmake"
cd mythweather && \
qmake mythweather.pro -o Makefile "QMAKE=C:/MSys/1.0/qt-3.3.x-p8/bin/qmake"
cd mythmovies && \
qmake mythmovies.pro -o Makefile "QMAKE=C:/MSys/1.0/qt-3.3.x-p8/bin/qmake"
cd cleanup && \
qmake cleanup.pro -o Makefile "QMAKE=C:/MSys/1.0/qt-3.3.x-p8/bin/qmake"
Error processing project file: C:/mythtv/mythplugins/cleanup/cleanup.pro
make: *** [qmake_all] Error 2
EFFECT FAILED (newer -> shell): mtime of file
(C:/mythtv/build/bin/mythtv/plugin
s/libmythmovies.dll) should be greater than file
(C:/mythtv/mythplugins/mythmovi
es/mythmovies/libmythmovies.dll).
[0] [1243764913]

What is the fix for this?


Tero Mäntyvaara


_______________________________________________
mythtv-dev mailing list
mythtv-dev [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev


jll544 at yahoo

May 31, 2009, 9:54 AM

Post #2 of 4 (1127 views)
Permalink
Re: 0.21-fixes Windows port plugins installation failed [In reply to]

> Error processing project file:
> C:/mythtv/mythplugins/cleanup/cleanup.pro
> make: *** [qmake_all] Error 2

Edit config.pro in the mythplugins directory, and remove the line "SUBDIRS += cleanup"



_______________________________________________
mythtv-dev mailing list
mythtv-dev [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev


termant at gmail

May 31, 2009, 10:48 AM

Post #3 of 4 (1119 views)
Permalink
Re: 0.21-fixes Windows port plugins installation failed [In reply to]

Thank you for the piece of advice. I made the fix, but process stopped
again despite of that:

make[2]: Leaving directory `/C/mythtv/mythplugins/mythweather/i18n'
make[1]: Leaving directory `/C/mythtv/mythplugins/mythweather'
cd mythmovies && \
make -f Makefile install
make[1]: Entering directory `/C/mythtv/mythplugins/mythmovies'
cd mythmovies && \
qmake mythmovies.pro -o Makefile "QMAKE=C:/MSys/1.0/qt-3.3.x-p8/bin/qmake"
cd ignyte && \
qmake ignyte.pro -o Makefile "QMAKE=C:/MSys/1.0/qt-3.3.x-p8/bin/qmake"
cd mythmovies && \
make -f Makefile install
make[2]: Entering directory `/C/mythtv/mythplugins/mythmovies/mythmovies'
Makefile:93: warning: overriding commands for target `.'
Makefile:90: warning: ignoring old commands for target `.'
cp -f "libmythmovies.dll"
"/C/mythtv/build/lib/mythtv/plugins/libmythmovies.dll"

cp -f "movies-ui.xml" "/C/mythtv/build/share/mythtv/themes/default/"
cp -f "theme-wide/movies-ui.xml"
"/C/mythtv/build/share/mythtv/themes/default-wi
de/"
make[2]: Leaving directory `/C/mythtv/mythplugins/mythmovies/mythmovies'
cd ignyte && \
make -f Makefile install
make[2]: Entering directory `/C/mythtv/mythplugins/mythmovies/ignyte'
Makefile:94: warning: overriding commands for target `.'
Makefile:91: warning: ignoring old commands for target `.'
cp -f "ignyte.exe" "/C/mythtv/build/bin/ignyte.exe"
make[2]: Leaving directory `/C/mythtv/mythplugins/mythmovies/ignyte'
make[1]: Leaving directory `/C/mythtv/mythplugins/mythmovies'
EFFECT FAILED (newer -> shell): mtime of file
(C:/mythtv/build/bin/mythtv/plugin
s/libmythmovies.dll) should be greater than file
(C:/mythtv/mythplugins/mythmovi
es/mythmovies/libmythmovies.dll).
[0] [1243764913]

I notices that there isn't path C:/mythtv/build/bin/mythtv/plugin
s. Path C:\mythtv\build\bin\sqldrivers is the deepest and no other
subdirs in C:\mythtv\build\bin.


Jeff Lu wrote:
>> Error processing project file:
>> C:/mythtv/mythplugins/cleanup/cleanup.pro
>> make: *** [qmake_all] Error 2
>
> Edit config.pro in the mythplugins directory, and remove the line "SUBDIRS += cleanup"
>
>
>
> _______________________________________________
> mythtv-dev mailing list
> mythtv-dev [at] mythtv
> http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev
>
_______________________________________________
mythtv-dev mailing list
mythtv-dev [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev


jll544 at yahoo

May 31, 2009, 1:17 PM

Post #4 of 4 (1126 views)
Permalink
Re: 0.21-fixes Windows port plugins installation failed [In reply to]

> I notices that there isn't path C:/mythtv/build/bin/mythtv/plugins.
> Path C:\mythtv\build\bin\sqldrivers is the deepest and no other
> subdirs in C:\mythtv\build\bin.

A buggy qmake file in trunk causes win32 plugins to install to the wrong directory. But apparently someone changed the packager script check that wrong location instead of fixing the qmake file in trunk.

As you're building 0.21, the plugins are in the correct location. You should edit your win32_packager.pl to check c:/mythtv/build/lib/mythtv/plugins



_______________________________________________
mythtv-dev mailing list
mythtv-dev [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

MythTV dev RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.