Page 1 of 1

sqlite and wxwidgets 3.1.0 under ubuntu 16.04

Posted: Tue May 10, 2016 6:43 pm
by dode
System:
LUBUNTU 16.04
wxWidgets 3.1.0: (from codelite site downloaded)
wxsqlite: "sudo apt-get install libwxsqlite3-3.0-0 wxsqlite3-3.0-dbg"

Old app with wxsqlite code refuses to compile with error:
wx/wxsqlite3.h no such file or directory

A locate:
"locate wxsqlite3.h"
does not find it ...

P.S.
The wxWidgets 3.0.2 on the same system with the same wxsqlite used to work out of the box.

Any help would be appreciated.

Re: sqlite and wxwidgets 3.1.0 under ubuntu 16.04

Posted: Tue May 10, 2016 8:19 pm
by marcelinux
I think you need libwxsqlite3-3.0-dev

Re: sqlite and wxwidgets 3.1.0 under ubuntu 16.04

Posted: Wed May 11, 2016 4:43 am
by dode
I found it myself:

the mentioned deb files were build against wxwidgets 3.0

following
wxsqlite3opt.h
wxsqlite3dyn.h
wxsqlite3def.h
wxsqlite3.h
were copyed from: /usr/include/wx-3.0/wx
under: /usr/include/wx-3.1-unofficial/wx

So the Problem is build under the "wrong" library ...

Regards