I already came across this, and Sigbj�rn sent me a fix, which should soon
be in CVS. Just in case it's not, it follows below. I found that I also
needed to change rts/gmp/configure.in so that the first call to AC_INIT
occurred after the setting of the three variables just below it.
---------- Forwarded message ----------
Date: Tue, 14 Mar 2000 10:44:07 -0800
From: Sigbjorn Finne <[EMAIL PROTECTED]>
To: 'Reuben Thomas' <[EMAIL PROTECTED]>
Subject: RE: gmp configure
I guess you're running a more recent version of
autoconf than me (2.12), which is a little bit
more paranoid than it needs to be. I believe
you can fix it as follows:
* change rts/Makefile to instead pass --host=$(HOSTPLATFORM)
to gmp/ when booting.
* add a section to gmp/configure.in
# per-host:
case "${host}" in
*-*-mingw32)
CFLAGS="-mno-cygwin -O"
;;
esac
--sigbjorn