From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.user Subject: Re: Gmp now working, but number.c:147 isinf declared implicitly. Date: Fri, 19 Jan 2007 11:37:31 +1100 Message-ID: <877ivjam2c.fsf@zip.com.au> References: <87fyafvol7.fsf@zip.com.au> <87fyacuj4h.fsf@zip.com.au> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1169167082 28045 80.91.229.12 (19 Jan 2007 00:38:02 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 19 Jan 2007 00:38:02 +0000 (UTC) Cc: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Jan 19 01:37:58 2007 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1H7hlW-0006W8-EJ for guile-user@m.gmane.org; Fri, 19 Jan 2007 01:37:58 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H7hlX-0000ML-8V for guile-user@m.gmane.org; Thu, 18 Jan 2007 19:37:59 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1H7hlT-0000MB-Kx for guile-user@gnu.org; Thu, 18 Jan 2007 19:37:55 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1H7hlR-0000Lq-Rc for guile-user@gnu.org; Thu, 18 Jan 2007 19:37:55 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H7hlR-0000Ln-Oe for guile-user@gnu.org; Thu, 18 Jan 2007 19:37:53 -0500 Original-Received: from [61.8.2.215] (helo=mailout1.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.52) id 1H7hlR-0005AZ-7Y for guile-user@gnu.org; Thu, 18 Jan 2007 19:37:53 -0500 Original-Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.2.163]) by mailout1.pacific.net.au (Postfix) with ESMTP id 715B75A7C38; Fri, 19 Jan 2007 11:37:49 +1100 (EST) Original-Received: from localhost (ppp2EA5.dyn.pacific.net.au [61.8.46.165]) by mailproxy2.pacific.net.au (Postfix) with ESMTP id ABD1C2740E; Fri, 19 Jan 2007 11:37:48 +1100 (EST) Original-Received: from gg by localhost with local (Exim 4.63) (envelope-from ) id 1H7hl5-00021p-VD; Fri, 19 Jan 2007 11:37:32 +1100 Original-To: Hugh Sasse In-Reply-To: (Hugh Sasse's message of "Tue, 16 Jan 2007 14:58:48 +0000 (WET)") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:5799 Archived-At: Hugh Sasse writes: > > ./.libs/libguile.so: undefined reference to `isinf' > > At which point I am now stuck. After all, configure found isinf. You might be able to stick something in to save the conftest.c used. Or maybe it's no more than #include int main () { return (isinf(0.0) != 0); } In any case if you want to advise what should or shouldn't be tested or done ... > autoreconf -if > (with autoconf 2.61) I get a vastly different configure script > with spurious "-n"s sprinkled throughout: > > bash-2.05$ gdiff -u configure{.orig,} | head -20 > --- configure.orig 2006-10-07 04:54:24.000000000 +0100 > +++ configure 2007-01-16 14:41:07.226209000 +0000 > @@ -1,6 +1,8 @@ > #! /bin/sh > # Guess values for system-dependent variables and create Makefiles. > -# Generated by GNU Autoconf 2.60a for guile 1.8.1. > +# Generated by GNU Autoconf 2.61 for -n guile > + -n 1.8.1 > +. Ahh, thanks. "echo -n" used in configure.in is not portable :(. In the AC_INIT you should be able to replace the m4_esyscmd with some hard coded numbers. I'll try to do something that strips the newline using m4. _______________________________________________ Guile-user mailing list Guile-user@gnu.org http://lists.gnu.org/mailman/listinfo/guile-user