From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10832 invoked by alias); 10 Sep 2009 04:01:09 -0000 Received: (qmail 10709 invoked by uid 22791); 10 Sep 2009 04:01:08 -0000 X-SWARE-Spam-Status: No, hits=-2.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 10 Sep 2009 04:01:03 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 2003C2BAC1D; Thu, 10 Sep 2009 00:01:02 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id YsudRHrUHyRO; Thu, 10 Sep 2009 00:01:02 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id CD8392BAC1B; Thu, 10 Sep 2009 00:01:01 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 0BCCFF589B; Wed, 9 Sep 2009 21:00:54 -0700 (PDT) Date: Thu, 10 Sep 2009 04:01:00 -0000 From: Joel Brobecker To: Tom Tromey Cc: Robert Bu , gdb@sourceware.org Subject: Re: Problem to build CVS head Message-ID: <20090910040054.GD7489@adacore.com> References: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="tsOsTdHNUZQcU9Ye" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2009-09/txt/msg00161.txt.bz2 --tsOsTdHNUZQcU9Ye Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 274 > There's a missing update to gdb/configure.ac. Someone will check in a > fix soon. If nobody beats me to it I will do it tomorrow. Argh! Problem reproduced when building with --without-python, and fixed with the attached patch. Thanks for reporting the issue. -- Joel --tsOsTdHNUZQcU9Ye Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="python-rename-configury.diff" Content-length: 1628 commit 844dd7cf19e634ee7e39e70f82c00e17de949641 Author: Joel Brobecker Date: Wed Sep 9 20:56:25 2009 -0700 * configure.ac: Fix the names of the python source and object files following the renaming done in an earlier change. * configure: Regenerate. diff --git a/gdb/configure b/gdb/configure index 2691e33..99acc2f 100755 --- a/gdb/configure +++ b/gdb/configure @@ -9323,8 +9323,8 @@ $as_echo "${PYTHON_CFLAGS}" >&6; } else # Even if Python support is not compiled in, we need to have these files # included in order to recognize the GDB command "python". - CONFIG_OBS="$CONFIG_OBS python.o python-value.o python-prettyprint.o" - CONFIG_SRCS="$CONFIG_SRCS python/python.c python/python-value.c python/python-prettyprint.c" + CONFIG_OBS="$CONFIG_OBS python.o py-value.o py-prettyprint.o" + CONFIG_SRCS="$CONFIG_SRCS python/python.c python/py-value.c python/py-prettyprint.c" fi diff --git a/gdb/configure.ac b/gdb/configure.ac index aa0bf75..b31d9b7 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -683,8 +683,8 @@ if test "${have_libpython}" = yes; then else # Even if Python support is not compiled in, we need to have these files # included in order to recognize the GDB command "python". - CONFIG_OBS="$CONFIG_OBS python.o python-value.o python-prettyprint.o" - CONFIG_SRCS="$CONFIG_SRCS python/python.c python/python-value.c python/python-prettyprint.c" + CONFIG_OBS="$CONFIG_OBS python.o py-value.o py-prettyprint.o" + CONFIG_SRCS="$CONFIG_SRCS python/python.c python/py-value.c python/py-prettyprint.c" fi AC_SUBST(PYTHON_CFLAGS) --tsOsTdHNUZQcU9Ye--