RTG configure failing, hacking ./configure?

2010-10-06 Thread Tyler Mills
While building RTG, I get this error on ./configure --prefix=/usr/local/rtg I am going through and trying to hack the configure file to see if I can get it to work, though I wonder if you guys have any ideas? Thanks Error: config.guess timestamp = 2002-03-04 uname -m = x86_64 uname -r =

Re: RTG configure failing, hacking ./configure?

2010-10-06 Thread Tyler Mills
Success! Added these lines to config.guess -- *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonflybsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit 0;; -- and this to config.sub -- | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \

Re: RTG configure failing, hacking ./configure?

2010-10-06 Thread Hasso Tepper
On 06.10.10 21:19, Tyler Mills wrote: Success! Added these lines to config.guess Don't do stupid things. Just obtain latest config.guss and config.sub: $ ftp 'http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess' $ ftp

Re: RTG configure failing, hacking ./configure?

2010-10-06 Thread Tyler Mills
That appears to include the changes I added myself. I will keep this in mind next time I encounter this error. Thanks On Wed, Oct 6, 2010 at 1:41 PM, Hasso Tepper ha...@estpak.ee wrote: On 06.10.10 21:19, Tyler Mills wrote: Success! Added these lines to config.guess Don't do stupid things.