|
If you get the following error:
g++ -O2 -Wall -DVERSION_MAJOR=\"2008\" -DVERSION_MINOR=\"05\" -DVERSION_TINY=\"R1\" -DTIMESTAMP=\"`cat TIMESTAMP`\" -g -O2 -c panelfront.cc -o panelfront.o
In file included from panelfront.cc:52:
panelfront.h:31:19: error: panel.h: No such file or directory
In file included from packet.h:45,
from tcpclient.h:41,
from frontend.h:34,
from panelfront.h:45,
from panelfront.cc:52:
-snip-
panelfront.cc: In member function "void PanelFront::DestroyWindow(PanelFront::kis_window*)":
panelfront.cc:1277: error: "struct PanelFront::kis_window" has no member named "pan"
panelfront.cc:1277: error: "hide_panel" was not declared in this scope
panelfront.cc:1278: error: "struct PanelFront::kis_window" has no member named "pan"
panelfront.cc:1278: error: "del_panel" was not declared in this scope
make: *** [panelfront.o] Error 1
you need to disable panel during configuration, i.e.:
./configure -disable-panel
by marc at 2009-01-07 18:21:55
|