Missing file in rev 1544?

Use this category to discuss anything related to the development of Guayadeque.
Locked
bhm
Posts: 4
Joined: Tue Mar 22, 2011 6:52 am

Missing file in rev 1544?

Post by bhm »

Just downloaded 1544 rev from svn. Seems there's file missing I guess.

Code: Select all

guayadeque-svn/src/PlayerPanel.h:38: fatal error: wx/aui/aui.h: No such file or directory
compilation terminated.
make[2]: *** [src/CMakeFiles/guayadeque.dir/AlListBox.o] Error 1
make[1]: *** [src/CMakeFiles/guayadeque.dir/all] Error 2
make: *** [all] Error 2
Or is it mistake on my end?
User avatar
anonbeat
Posts: 2048
Joined: Thu Sep 16, 2010 9:47 pm

Missing file in rev 1544?

Post by anonbeat »

You should have the file at /usr/include/wx-2.8/wx/aui/aui.h
bhm
Posts: 4
Joined: Tue Mar 22, 2011 6:52 am

Missing file in rev 1544?

Post by bhm »

File's there. I'm on Maverick.
Some switch to pass or change maybe?
User avatar
anonbeat
Posts: 2048
Joined: Thu Sep 16, 2010 9:47 pm

Missing file in rev 1544?

Post by anonbeat »

run this commands and let me know please

make clean
./build

In case something went wrong so the make files are rebuilt
bhm
Posts: 4
Joined: Tue Mar 22, 2011 6:52 am

Missing file in rev 1544?

Post by bhm »

[ 0%] Building CXX object src/CMakeFiles/guayadeque.dir/AlListBox.o
In file included from ~/guayadeque-svn/src/AlbumBrowser.h:27,
from ~/guayadeque-svn/src/MainFrame.h:24,
from ~/guayadeque-svn/src/AlListBox.cpp:28:
~/guayadeque-svn/src/PlayerPanel.h:38: fatal error: wx/aui/aui.h: No such file or directory
compilation terminated.
make[2]: *** [src/CMakeFiles/guayadeque.dir/AlListBox.o] Error 1
make[1]: *** [src/CMakeFiles/guayadeque.dir/all] Error 2
make: *** [all] Error 2


Same story.
User avatar
anonbeat
Posts: 2048
Joined: Thu Sep 16, 2010 9:47 pm

Missing file in rev 1544?

Post by anonbeat »

Can you send me by email the complete build log please ?
anonbeat at gmail dot com

Thanks
bhm
Posts: 4
Joined: Tue Mar 22, 2011 6:52 am

Missing file in rev 1544?

Post by bhm »

I figured it out.
For some reason version 2.6 not 2.8 wxWidgets was used as default.

This will allow to change it back to proper.
sudo update-alternatives --config wx-config
Locked