From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Noah Lavine Newsgroups: gmane.lisp.guile.bugs Subject: Build Problem Involving Inline.h Date: Thu, 16 Dec 2010 20:50:45 -0500 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1292550665 6539 80.91.229.12 (17 Dec 2010 01:51:05 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 17 Dec 2010 01:51:05 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Fri Dec 17 02:50:59 2010 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PTPTH-0000Dx-0W for guile-bugs@m.gmane.org; Fri, 17 Dec 2010 02:50:59 +0100 Original-Received: from localhost ([127.0.0.1]:39522 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PTPTG-00044m-HG for guile-bugs@m.gmane.org; Thu, 16 Dec 2010 20:50:58 -0500 Original-Received: from [140.186.70.92] (port=34765 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PTPTA-00044h-UY for bug-guile@gnu.org; Thu, 16 Dec 2010 20:50:53 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PTPT9-0006VI-Oy for bug-guile@gnu.org; Thu, 16 Dec 2010 20:50:52 -0500 Original-Received: from mail-ww0-f49.google.com ([74.125.82.49]:52167) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PTPT9-0006Um-Jz for bug-guile@gnu.org; Thu, 16 Dec 2010 20:50:51 -0500 Original-Received: by wwb17 with SMTP id 17so178583wwb.30 for ; Thu, 16 Dec 2010 17:50:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=oT1W/BBQ4TFNyshk4sRXp5PQs+cElP8EDJYgh2UYxio=; b=xPmK7cl0N0BVdJhoFfvx7amgCBjxmEl1XQJoATTfy/7zX57tZv6hSOy2GU9absWkPC 74xS5WcmF1O7DDts3TsRIXny71tIdYfRsOg1yZ/yClMjLRMyVZ2XrFGNtfGCZwQ5bsJM PaYhOFDEZ8UXgw4wwSG9XOwfhc8lyf/Py3060= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=qTU1XfQR8ZVvb0n7mbrXMexawGFoN78yDgjFrv3x9f10gBk9jBBFP7ZaIL8uXsj1iQ eC1FB95vpK80kI7CO0LTLWeF4RE3Q1eAycFicAX5RaHzemS4HOIUykGFRMRd61DuxeZG r7rsC6Ic8jvhUCTtbDWkFi6xgsFwmIc5OQzZQ= Original-Received: by 10.216.4.2 with SMTP id 2mr428165wei.51.1292550649400; Thu, 16 Dec 2010 17:50:49 -0800 (PST) Original-Received: by 10.216.156.65 with HTTP; Thu, 16 Dec 2010 17:50:45 -0800 (PST) X-Google-Sender-Auth: x8lGznuaCnnq_iOPmtEDNsDCbhU X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:4905 Archived-At: Hello, I tried building the latest git Guile, and got the following error: CC libguile_2.0_la-alist.lo In file included from ../libguile.h:124, from ../libguile/programs.h:22, from ../libguile/_scm.h:84, from alist.c:25: ../libguile/inline.h:340: error: static declaration of 'scm_is_string' follows non-static declaration ../libguile/strings.h:128: error: previous declaration of 'scm_is_string' was here make[3]: *** [libguile_2.0_la-alist.lo] Error 1 I checked the log, and it looks like the declaration in inline.h was added quite recently. I removed it, and put back a definition of scm_is_string in libguile/strings.c, and everything worked. Noah