[Mixxx-devel] Failing builds

2011-11-12 Thread Anders Gunnarsson
Hi all, I just tried to build both trunk and 1.10 branch. Both fail with the same error. src/dlgprefvinyl.cpp: In member function ‘void DlgPrefVinyl::slotUpdate()’: src/dlgprefvinyl.cpp:141:5: error: ‘SignalQualityEnable’ was not declared in this scope src/dlgprefvinyl.cpp: In member function

Re: [Mixxx-devel] Failing builds

2011-11-12 Thread Owen Williams
Are you building with vinyl control enabled or not enabled? (By default it's enabled). also do you have files in src/ that begin with ui_? like ui_blahblah.h? cheers, Owen On Sat, 2011-11-12 at 17:39 +0100, Anders Gunnarsson wrote: Hi all, I just tried to build both trunk and 1.10 branch.

Re: [Mixxx-devel] Failing builds

2011-11-12 Thread RJ Ryan
Hey Anders, This is definitely a problem with having ui_* files in src/. We changed scons to moc the UI files and put the results in the build folder instead of src at some point. To fix it, just do: rm src/ui_* On Sat, Nov 12, 2011 at 11:58 AM, Owen Williams owilli...@mixxx.org wrote: Are

Re: [Mixxx-devel] Failing builds

2011-11-12 Thread Anders Gunnarsson
Removing the ui_ files did the trick! Thanks! 2011/11/12 RJ Ryan rr...@mit.edu: Hey Anders, This is definitely a problem with having ui_* files in src/. We changed scons to moc the UI files and put the results in the build folder instead of src at some point. To fix it, just do: rm src/ui_*