On Fri, 14 Jul 2023 08:55:23 -0700 (PDT), 'Murat Yıldız' via SpatiaLite
Users wrote:
> Hello,
>
> I have to build SpatiaLite on Windows. Currently, I'm stuck at step
> 10
> (libwebp)
>
Hi Murat,
coincidentally I just today updated the build guide for Windows
using the latest gcc 13.1, and I can only say that I haven't
found even the slightest problem building libwebp; it went
absolutely smooth.
http://www.gaia-gis.it/gaia-sins/mingw32_how_to.html
http://www.gaia-gis.it/gaia-sins/mingw64_how_to.html
coming to your error message, it is clear that you
are encountering problems with
libwebp.la
*.la files are small text files that you can open
with any text editor that are used by libtool to
locate static and dynamic libraries, and they are
usually installed by "make install"
I find quite odd that it is called during the build
of libwebp itself when it obviously can't be there
yet since the build is still in progress.
to avoid unpleasant interferences of this kind always
remember to thoroughly clean the environment before
reconfiguring a package to build:
make uninstall
make distclean
bye Sandro