So I found the solution on the guile users list:

To build libguile under Cygwin:

make clean
libtoolize --copy --force
./configure
make
make install

Apparently the version of libtool included in guile is broken and this
fixes it.  After that, autogen seems to be a lot more stable and
doesn't crash constantly.

You still have to fix guile-config though since the LDFLAGS are in the
wrong order.  I just renamed it to guile-config.original and wrote a
new guile-config script to fix it:

#!/bin/bash

if test -z "$1" ; then
        guile-config.original
elif test "$1" == "link"; then
        echo "-L/usr/local/lib -lguile -lltdl -lgmp -lcrypt -lm -lltdl"
else
        guile-config.original $1
fi

-- 
Aaron Turner
http://synfin.net/
http://tcpreplay.synfin.net/ - Pcap editing & replay tools for Unix
They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety. -- Benjamin Franklin

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
Autogen-users mailing list
Autogen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/autogen-users

Reply via email to