Re: [Autogen-users] autogen-5.9.5pre1 pre-release
Brought to you by:
bkorb
From: Aaron T. <syn...@gm...> - 2008-05-01 22:00:21
|
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 |