Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Jeff McKenna
On 2016-01-20 7:24 AM, Gane R wrote: Is that I have to build the sqlite3 separately and then build gdal, does gdal have an sqlite internally like png (libpng) if so how can it be used. Thanks You must build sqlite separately. For MS4W builds (www.ms4w.com) we start by building sqlite, and

Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Gane R
Is that I have to build the sqlite3 separately and then build gdal, does gdal have an sqlite internally like png (libpng) if so how can it be used. Thanks On Wed, Jan 20, 2016 at 3:42 PM, Gane R wrote: > I was looking at the makefile.vc and docs and visual studio reference I > was not able to

Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Gane R
I was looking at the makefile.vc and docs and visual studio reference I was not able to create sqlite3_i.lib do I miss something apart from linker optimization flags cl /c sqlite3.c link /nologo /dll sqlite3.obj /out:sqlite3.dll /implib:sqlite3_i.lib My goal is make gdal access geopackage so I wa

Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Even Rouault
Le mercredi 20 janvier 2016 09:56:20, Gane R a écrit : > Where do I get the sqlite3 with include header files, stub library > sqlite3_i.lib and dll. > > Do I have to build it, If so I tried the following > > I have a sql-amalgation version. > I tried to look the documentation on sqlite website fo

[gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Gane R
Where do I get the sqlite3 with include header files, stub library sqlite3_i.lib and dll. Do I have to build it, If so I tried the following I have a sql-amalgation version. I tried to look the documentation on sqlite website for creating a sqlite3.dll using the following command cl sqlite3.c -l