From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Steven Wu Newsgroups: gmane.lisp.guile.devel Subject: git clone guile 1.9 build problem on MacOS X 10.5.2 Date: Sun, 13 Apr 2008 09:38:36 -0700 Message-ID: <5E05E806-D42A-44EB-B5FC-07D191E3B753@qwest.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v919.2) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1208104755 12485 80.91.229.12 (13 Apr 2008 16:39:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 13 Apr 2008 16:39:15 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sun Apr 13 18:39:52 2008 connect(): Connection refused Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Jl5F1-0007M3-MB for guile-devel@m.gmane.org; Sun, 13 Apr 2008 18:39:43 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jl5EN-0001BK-Ij for guile-devel@m.gmane.org; Sun, 13 Apr 2008 12:39:03 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jl5EG-000175-8D for guile-devel@gnu.org; Sun, 13 Apr 2008 12:38:56 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jl5EF-000153-9o for guile-devel@gnu.org; Sun, 13 Apr 2008 12:38:55 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jl5EE-00014g-Sr for guile-devel@gnu.org; Sun, 13 Apr 2008 12:38:54 -0400 Original-Received: from mpls-qmqp-01.inet.qwest.net ([63.231.195.112]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Jl5EE-0000Rg-H1 for guile-devel@gnu.org; Sun, 13 Apr 2008 12:38:54 -0400 Original-Received: from mpls-pop-01.inet.qwest.net (mpls-pop-01.inet.qwest.net [63.231.195.1]) by mpls-qmqp-01.inet.qwest.net (Postfix) with QMQP id 076251A98DA for ; Sun, 13 Apr 2008 16:38:45 +0000 (UTC) Original-Received: from 71-35-21-122.phnx.qwest.net (HELO ?10.0.0.5?) (71.35.21.122) by mpls-pop-01.inet.qwest.net with SMTP; 13 Apr 2008 16:38:44 -0000 X-Mailer: Apple Mail (2.919.2) X-detected-kernel: by monty-python.gnu.org: FreeBSD 6.x (1) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:7137 Archived-At: Hi, I was building guile 1.9 from git clone src, and I run into the following problems: $ ./autogen.sh $ ./configure --prefix=/usr --enable-shared --enable-maintainer-mode -- enable-threads ... === configuring in guile-readline (/Users/wus/local/src/gnu/guile/ guile-readline) configure: running /bin/sh ./configure '--prefix=/usr' '--enable- shared' '--enable-maintainer-mode' '--enable-threads' --cache-file=/ dev/null --srcdir=. ./configure: line 4: .: filename argument required .: usage: . filename [arguments] configure: error: ./configure failed for guile-readline The problem was like that in the guile-readline/configure.in $ head guile-readline/configure.in AC_PREREQ(2.50) AC_INIT(guile-readline, m4_esyscmd(. ../GUILE-VERSION && echo -n ${GUILE_VERSION})) AC_CONFIG_AUX_DIR([.]) AC_CONFIG_SRCDIR(readline.c) AM_CONFIG_HEADER([guile-readline-config.h]) AM_INIT_AUTOMAKE([foreign no-define]) . $srcdir/../GUILE-VERSION but the generated configure becane: $ head guile-readline/configure #! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for guile-readline -n 1.9.0 . # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## If added ". $srcdir/../GUILE-VERSION," $srcdir couldn't be resolve correctly. I changed it to ". ../GUILE-VERSION" and got me pass that, but it stopped at: === configuring in guile-readline (/Users/wus/local/src/gnu/guile/ guile-readline) configure: running /bin/sh ./configure '--prefix=/usr' '--enable- shared' '--enable-maintainer-mode' '--enable-threads' --cache-file=/ dev/null --srcdir=. checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking whether make sets $(MAKE)... yes checking for a BSD-compatible install... /usr/bin/install -c checking for gcc... gcc checking for C compiler default output file name... configure: error: C compiler cannot create executables See `config.log' for more details. configure: error: ./configure failed for guile-readline Any recommendation? steve