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 CC_FOR_BUILD Date: Mon, 12 May 2003 09:11:11 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87wugx5bao.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1052694733 12865 80.91.224.249 (11 May 2003 23:12:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 11 May 2003 23:12:13 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon May 12 01:12:11 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 19EzzH-0003LL-00 for ; Mon, 12 May 2003 01:12:11 +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 19F004-0000Bh-00 for guile-devel@m.gmane.org; Sun, 11 May 2003 19:13:00 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19Ezz4-0006qB-00 for guile-devel@gnu.org; Sun, 11 May 2003 19:11:58 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19Ezyu-0006gV-00 for guile-devel@gnu.org; Sun, 11 May 2003 19:11:49 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19Ezym-0006XT-00 for guile-devel@gnu.org; Sun, 11 May 2003 19:11:41 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h4BNBdPc005534 for ; Mon, 12 May 2003 09:11:39 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h4BNBdQg024743 for ; Mon, 12 May 2003 09:11:39 +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 h4BNBbYZ008379 for ; Mon, 12 May 2003 09:11:38 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19EzyL-0001Qn-00; Mon, 12 May 2003 09:11:13 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never 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:2334 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2334 --=-=-= I applied a change * configure.in (CC_FOR_BUILD): Use AC_ARG_VAR. This gets CC_FOR_BUILD described in ./configure --help, and preserves its value across reconfigures. Unless anyone is very attached to --with-cc-for-build, I'd suggest removing that option and just leave the CC_FOR_BUILD variable. The latter is moderately standard (eg. config.guess uses it), and an extra guile specific option won't really add much. --=-=-= Content-Disposition: attachment; filename=configure.in.cc-for-build-arg-var.diff --- configure.in.~1.215.~ 2003-05-12 08:50:01.000000000 +1000 +++ configure.in 2003-05-12 09:05:22.000000000 +1000 @@ -938,7 +938,7 @@ CCLD_FOR_BUILD="$CC_FOR_BUILD" AC_SUBST(cross_compiling) -AC_SUBST(CC_FOR_BUILD) +AC_ARG_VAR(CC_FOR_BUILD,[build system C compiler]) AC_SUBST(CCLD_FOR_BUILD) ## libtool erroneously calls CC_FOR_BUILD HOST_CC; --=-=-= 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 --=-=-=--