Perhaps you can include the '.lib' file together with the dll and '.def' file in the windows version, for I use the codewarrior from Metrowerks. Besides, I've noticed that there are a lot of implicit castings from char * to unsigned char * which are not accepted when I try to compile the source. I'd be glad to send the changes I've made to make it work with codewarrior projects.
good luck, Pascal.
Pascal,
Each compiler uses a different .lib file format to link to DLLs. The lib file you need will be generated by a utility supplied by Metrowerks. SQLite's Makefile currently containss commands to generate lib files for the Borland and Microsoft compilers. You can generate these with a command 'make implib'. If you can determine the command required for metrowerks, I'm sure it can be added to the make file as well.
HTH
Dennis Cote