Halo, I tried to install libiconv with this tutorial http://www.gaia-gis.it/gaia-sins/mingw_how_to.html#libiconv. I installed MinGW from heise.de, containing MSYS. In MSYS I made the steps ./configure and make. Step make install finishes with an error:
libtool:install: /bin/install -c -m 644 .libs/../bin/libiconv-2.dll /usr/local/lib/../bin/libiconv-2.dll
/bin/install: cannot stat .libs/../bin/libiconv-2.dll: No such file or directory
make install error
Leaving directory c/libiconv-1.14/lib
To solve this problem, I copied libiconv-2.dll from C:\MinGW\msys\1.0\local\bin to C:\libiconv-1.14\bin. It was proposed in https://linuxacademy.com/blog/linux/troubleshooting-configure-make-and-make-install-tutorial/ in section make install problems.
The package you just compiled doesn’t have the install target. In this case you will have to copy the compiled binaries to a bin directory yourself.
As I compiled with MSYS, I had the binaries under C:\MinGW\msys\1.0\local\bin.
The path to libiconv-2.dll - .libs/../bin/libiconv-2.dll - is right, if current directory is c/libiconv-1.14/lib.
Does anyone know why libiconv-2.dll can't be found? Everything seems to be ok.
update: I don't try to install libiconv anymore!!!