From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Miroslav Lichvar Newsgroups: gmane.lisp.guile.devel Subject: Re: build failure just trying to build guile-1.8.7 natively Date: Thu, 19 Nov 2009 18:24:26 +0100 Message-ID: <20091119172426.GH31313@localhost> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1258652196 14025 80.91.229.12 (19 Nov 2009 17:36:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 19 Nov 2009 17:36:36 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Nov 19 18:36:29 2009 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 1NBAvk-0001RN-Oo for guile-devel@m.gmane.org; Thu, 19 Nov 2009 18:36:29 +0100 Original-Received: from localhost ([127.0.0.1]:37808 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NBAvk-00058Y-2l for guile-devel@m.gmane.org; Thu, 19 Nov 2009 12:36:28 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NBAkI-0002Q4-08 for guile-devel@gnu.org; Thu, 19 Nov 2009 12:24:38 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NBAkD-0002Jn-4y for guile-devel@gnu.org; Thu, 19 Nov 2009 12:24:37 -0500 Original-Received: from [199.232.76.173] (port=49714 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NBAkC-0002JN-Qg for guile-devel@gnu.org; Thu, 19 Nov 2009 12:24:32 -0500 Original-Received: from mx1.redhat.com ([209.132.183.28]:37580) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NBAkA-0002FD-DO for guile-devel@gnu.org; Thu, 19 Nov 2009 12:24:30 -0500 Original-Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nAJHOSKN007501 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 19 Nov 2009 12:24:28 -0500 Original-Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nAJHOSlv021641 for ; Thu, 19 Nov 2009 12:24:28 -0500 Original-Received: from localhost (dhcp-lab-101.englab.brq.redhat.com [10.34.33.101]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id nAJHORFA013124 for ; Thu, 19 Nov 2009 12:24:27 -0500 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-08-17) X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. 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:9702 Archived-At: On Wed, Nov 18, 2009 at 12:11:51PM -0500, Robert P. J. Day wrote: > > as a followup to my earlier plea for help, i downloaded the > guile-1.8.7 tarball and tried to build it on my (effectively) fedora > 12 system, and ran into exactly the same error: > ERROR: unknown doc attribute: (location (string . alist.c) (int . 40) > (hash . hash)) This is caused by new cpp which inserts linemarkers where it didn't before. For example: #define X(a, b) a, __FILE__, __LINE__, b X(a, b) results in: a, "a.c" # 2 "a.c" , 3 # 2 "a.c" , b Adding -P option to cpp in guile-snarf-docs fixes the problem. -- Miroslav Lichvar