Ok, I was able to successfully “make”, but I had to manually edit the file
"libtool":
This:
# Compile-time system search path for libraries
sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
Got changed to this:
# Compile-time system search path for libraries
sys_lib_search_path_spec="/usr/local/cross-tools/i386-mingw32/lib \
/lib /usr/lib /usr/local/lib"
It looks like it worked:
% ./playwave
./playwave: ./playwave: cannot execute binary file
(ie, that’s a Win32 binary)
But:
-
Why isn’t it called “playwave.exe”?
There’s obviously something I didn’t send to “./configure” or "make"
to let it know the target was Windows 32 binaries. (Even though
when I ran configure, I said “–target=mingw32”!!!) -
OBVIOUSLY I did something wrong, or there’s a bug in the autoconf stuff,
because manually editing “libtool” shouldn’t be necessary…
Thanks!
-bill!