I found that moving single include line from AppGSpiceUI.hpp to AppGSpiceUI.cpp solves the problem providing the wxGTK version 2.6.x is used. I've used recent 2.6.2.
Patch appended. Wojciech Kazubski
--- gspiceui-v0.7.56/src/AppGSpiceUI.hpp.gcc4 2005-06-22 21:18:00.000000000 +0200 +++ gspiceui-v0.7.56/src/AppGSpiceUI.hpp 2005-10-25 23:44:47.000000000 +0200 @@ -33,7 +33,7 @@ // Application includes #include "Version.hpp" -#include "CmdLinePcr.hpp" +//#include "CmdLinePcr.hpp" #include "FrmMain.hpp" #include "TextCtrl.hpp" --- gspiceui-v0.7.56/src/AppGSpiceUI.cpp.gcc4 2005-07-18 13:32:23.000000000 +0200 +++ gspiceui-v0.7.56/src/AppGSpiceUI.cpp 2005-10-25 23:44:58.000000000 +0200 @@ -17,6 +17,7 @@ //***************************************************************************** #include "AppGSpiceUI.hpp" +#include "CmdLinePcr.hpp" //***************************************************************************** // All programs must have a "main" function. Under wxWidgets main( ) is
