News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

SVN wxSmith on Slackware

Started by fprimex, April 04, 2006, 02:52:17 AM

Previous topic - Next topic

fprimex

Hello all,

I checked out codeblocks around 2AM EST this morning and compiled it on Slackware against wxWidgets 2.6.3. codeblocks itself compiled without problems, but I ran into two show stoppers with wxSmith. Here's what I did to fix it; perhaps a patch is needed:

Comment out the following header in wxSmith/properties/wxsstringlistcheckproperty.h :
#include <wx/propgrid/propdev.h>
Is this Windows-specific? Maybe it needs a #ifdef check.

Add #include "widget.h" to wxSmith/wxsevent.cpp after #include "wxsglobals.h"

After those two fixes everything compiled, installed, and seems to work.

byo

It seems to be a problem with propgrid - it requires headers to be included in proper order.

Do You use PCH ? I've updated sources today to be compilable without pchs.

fprimex

config.log has this from my earlier build:
configure:23597: checking if the compiler supports precompiled headers
configure:23627: gcc -c -O2 -ffast-math -g -O2  conftest.c >&5
conftest.c:69:22: #error "no pch support"

I just did an svn update and am rebuilding. I will report when that is done.

fprimex

I haven't had time to sort through it yet to suggest a fix like last time, but the build does still fail. I've attached the output of make. The process was: svn update on 4-6-2006, make codeblocks, make wxSmith, build failed, make &> build.txt. I should have some time at the ALUG meeting tomorrow night to svn update and rebuild, then look at it.

http://alug.appstate.edu

[attachment deleted by admin]

fprimex

D'oh, sorry. I didn't take my previous changes out before the svn update. I built from a clean checkout and everything is happy.

Thanks!

byo

Thx for report :)  I really had no idea what that could be if not pch ;)