> AC_MSG_CHECKING(for shared library extension)
> + echo
> + echo "Target is ${target}."
> + echo
> case "${target}" in
>
> Then regenerate the configure script by running autogen.sh and run
> configure. It should give the contents of $target - so that we can see,
> what it is set to and why the test doesn't work.
>
> CU, Andy
It gives i386-mingw32 for ${target}
configure --host=i386-mingw32 --build=i386-mingw32 --target=i386-mingw32
--without-x \
--enable-directx --prefix=e:/usr/local --with-gii=/usr/local \
--with-extra-libs=/usr/local/lib
--with-extra-includes=/usr/local/include
With the above command I get the following...
checking host system type... i386-pc-mingw32
checking build system type... i386-pc-mingw32
Why isn't ${target} converted to i386-pc-mingw32??
I changed the dllext.m4 macro to test for *-mingw* | *-cygwin* and it
works. But I don't want to commit it until I understand the above
question.
John