From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Newsgroups: gmane.lisp.guile.bugs Subject: Re: SCM_INTERNAL causes problems Date: Mon, 23 Jun 2008 12:04:39 +0200 Message-ID: <878www8o1z.fsf@gnu.org> References: <485C8065.3090508@dbp-consulting.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1214215567 28610 80.91.229.12 (23 Jun 2008 10:06:07 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 23 Jun 2008 10:06:07 +0000 (UTC) Cc: Patrick Horgan To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Mon Jun 23 12:06:51 2008 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.50) id 1KAiwZ-0002um-G1 for guile-bugs@m.gmane.org; Mon, 23 Jun 2008 12:06:40 +0200 Original-Received: from localhost ([127.0.0.1]:34799 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KAivj-0001vx-6H for guile-bugs@m.gmane.org; Mon, 23 Jun 2008 06:05:47 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KAiuw-0001ob-UI for bug-guile@gnu.org; Mon, 23 Jun 2008 06:04:59 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KAiur-0001m3-1i for bug-guile@gnu.org; Mon, 23 Jun 2008 06:04:57 -0400 Original-Received: from [199.232.76.173] (port=36525 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KAiup-0001lR-7y for bug-guile@gnu.org; Mon, 23 Jun 2008 06:04:51 -0400 Original-Received: from main.gmane.org ([80.91.229.2]:48761 helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KAiuo-00044K-8h for bug-guile@gnu.org; Mon, 23 Jun 2008 06:04:50 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1KAium-0004Tx-HU for bug-guile@gnu.org; Mon, 23 Jun 2008 10:04:48 +0000 Original-Received: from 193.50.110.161 ([193.50.110.161]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jun 2008 10:04:48 +0000 Original-Received: from ludo by 193.50.110.161 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jun 2008 10:04:48 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 27 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 193.50.110.161 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 6 Messidor an 216 de la =?iso-8859-1?Q?R=E9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 821D 815D 902A 7EAB 5CEE D120 7FBA 3D4F EB1F 5364 X-OS: i686-pc-linux-gnu User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) Cancel-Lock: sha1:34lGzFe7eX4oGm5kaas0EaiWfCk= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) 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:3904 Archived-At: Hello again Patrick, Patrick Horgan writes: > When building lilypond the following variables: > `scm_i_gc_admin_mutex' SCM_INTERNAL gc.h > `scm_i_init_mutex' SCM_INTERNAL init.h > `scm_i_locale_mutex' SCM_INTERNAL posix.h > `scm_i_misc_mutex' SCM_INTERNAL threads.h > `scm_i_port_table_mutex' SCM_INTERNAL ports.h > `scm_i_port_table_room' SCM_INTERNAL ports.h > `scm_i_port_weak_hash' SCM_INTERNAL ports.h > `scm_i_signal_delivery_thread' SCM_INTERNAL scmsigs.h > `scm_i_structs_to_free' SCM_INTERNAL struct.h > `scm_i_sweep_mutex' SCM_INTERNAL gc.h > > show up as multiple defines in the link phase and keep lilypond from > building. The problem is that the include files they are in are > included in different .c files, so the variable definitions are in > various .o files. What compiler and platform are you using? MacOS X? The `.h' files contain only declarations, so these symbols should not end up multiply defined AIUI. Thanks, Ludovic.