dbsqlite problem

BlitzMax Forums/Brucey's Modules/dbsqlite problem

wmaass(Posted 2009) [#1]
Need to update an old project that uses dbsqlite. Got this error compiling, anyone have any idea what it means?

C:/Program Files/BlitzMax/mod/bah.mod/dbsqlite.mod/dbsqlite.debug.win32.x86.a(sqlite3.c.debug.win32.x86.o):sqlite3.c:(.text+0xe): undefined reference to `__mingw_vsprintf'


xlsior(Posted 2009) [#2]
did you upgrade your Blitzmax installation since you first installed bah.dbsqlite? If so, you probalby need to recompile the sqllite module.

If you have MinGW installed properly, then try the following from the command prompt:

cd c:\program files\blitzmax\bin
bmk makemods -a bah.dbsqlite
bmk makemods -a -h bah.dbsqlite

(It may have other dependencies, so you might just want to recompile all the bah modules: bmk makemods -a bah / bmk makemods -a -h bah)


wmaass(Posted 2009) [#3]
I did upgrade since then. I tried rebuilding as suggested but no luck, so I then updated the mods via svn, rebuilt, now it's happy. Thanks for your help!