From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: configure.in stack growth typo Date: Mon, 12 May 2003 08:09:38 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87u1c187a5.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1052691021 2769 80.91.224.249 (11 May 2003 22:10:21 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 11 May 2003 22:10:21 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon May 12 00:10:15 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19Ez1L-0000i1-00 for ; Mon, 12 May 2003 00:10:15 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19Ez1z-0004cj-06 for guile-devel@m.gmane.org; Sun, 11 May 2003 18:10:55 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19Ez1Y-0004bv-00 for guile-devel@gnu.org; Sun, 11 May 2003 18:10:28 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19Ez1C-0004CL-00 for guile-devel@gnu.org; Sun, 11 May 2003 18:10:07 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19Ez12-0003Uk-00 for guile-devel@gnu.org; Sun, 11 May 2003 18:09:56 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h4BM9qPc016247 for ; Mon, 12 May 2003 08:09:52 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h4BM9pQg009059 for ; Mon, 12 May 2003 08:09:51 +1000 (EST) Original-Received: from localhost (ppp12.dyn228.pacific.net.au [203.143.228.12]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h4BM9nYZ003455 for ; Mon, 12 May 2003 08:09:50 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19Ez0m-0000Wp-00; Mon, 12 May 2003 08:09:40 +1000 Original-To: guile-devel@gnu.org User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2325 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2325 --=-=-= I applied a correction, * configure.in (SCM_I_GSC_STACK_GROWS_UP): Fix missing comma in AC_TRY_RUN. This was causing downward stack systems to get the cross-compile warning, and cross-compile to fail completely. Incidentally, if this really must be known at configure time then it might be better for the cross compile to be fatal, to avoid mysterious problems. It could advise how to force a value with a cache variable or something. --=-=-= Content-Disposition: attachment; filename=configure.in.grow.diff Index: configure.in =================================================================== RCS file: /cvsroot/guile/guile/guile-core/configure.in,v retrieving revision 1.213 diff -u -u -r1.213 configure.in --- configure.in 7 Apr 2003 17:31:02 -0000 1.213 +++ configure.in 11 May 2003 22:06:48 -0000 @@ -788,7 +788,7 @@ AC_TRY_RUN(aux (l) unsigned long l; { int x; exit (l >= ((unsigned long)&x)); } main () { int q; aux((unsigned long)&q); }, - SCM_I_GSC_STACK_GROWS_UP=1 + [SCM_I_GSC_STACK_GROWS_UP=1], [], [AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h)]) --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--