Page 1 of 1

Repository build fails - MOC not found

Posted: 23 Jan 2013 12:00
by mike basil
to keep the long story short, in <vlc_trunk>/modules/gui/ all Makefiles

Code: Select all

MOC = moc
had to be replaced with

Code: Select all

MOC = <vlc_trunk>/contrib/x86_64-w64-mingw32/bin/moc.exe
the same for rcc, uic;

somebody who knows autotools well could suggest a better fix..?

Re: Repository build fails - MOC not found

Posted: 23 Jan 2013 19:49
by Jean-Baptiste Kempf
This is wrong, of course.

I think you did not read the documentation that told you to remove the moc, rcc, uic files (not the .exe ones) from contrib/bin folder.

Re: Repository build fails - MOC not found

Posted: 24 Jan 2013 12:00
by mike basil
thanks for the answer, yes as in http://wiki.videolan.org/Win32CompileMS ... leShooting

...even better would be to fix autotools setup to AVOID the workaround ;)