From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ken Raeburn Newsgroups: gmane.lisp.guile.devel Subject: Re: compiling with -DSCM_DEBUG=1 Date: Thu, 3 Sep 2009 17:04:42 -0400 Message-ID: References: <87ljky5ug4.fsf@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1252011924 13079 80.91.229.12 (3 Sep 2009 21:05:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 3 Sep 2009 21:05:24 +0000 (UTC) Cc: guile-devel@gnu.org To: =?ISO-8859-1?Q?Ludovic_Court=E8s?= Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Sep 03 23:05:16 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 1MjJUX-0000Zb-H7 for guile-devel@m.gmane.org; Thu, 03 Sep 2009 23:05:13 +0200 Original-Received: from localhost ([127.0.0.1]:41543 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MjJUW-0000Cw-UG for guile-devel@m.gmane.org; Thu, 03 Sep 2009 17:05:12 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MjJUQ-0000CI-FB for guile-devel@gnu.org; Thu, 03 Sep 2009 17:05:06 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MjJUL-0000BN-6A for guile-devel@gnu.org; Thu, 03 Sep 2009 17:05:05 -0400 Original-Received: from [199.232.76.173] (port=43938 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MjJUK-0000BD-T3 for guile-devel@gnu.org; Thu, 03 Sep 2009 17:05:00 -0400 Original-Received: from splat.raeburn.org ([69.25.196.39]:55234 helo=raeburn.org) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MjJU6-0000uH-Qv; Thu, 03 Sep 2009 17:04:58 -0400 Original-Received: from [10.0.0.172] (squish.raeburn.org [10.0.0.172]) by raeburn.org (8.14.3/8.14.1) with ESMTP id n83L4hVw018692; Thu, 3 Sep 2009 17:04:43 -0400 (EDT) In-Reply-To: <87ljky5ug4.fsf@gnu.org> X-Mailer: Apple Mail (2.936) 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:9261 Archived-At: On Sep 1, 2009, at 15:35, Ludovic Court=E8s wrote: >> --- a/libguile/gc.h >> +++ b/libguile/gc.h >> @@ -248,7 +248,7 @@ SCM_INTERNAL void scm_i_ensure_marking(void); >> SCM_API int scm_debug_cell_accesses_p; >> SCM_API int scm_expensive_debug_cell_accesses_p; >> SCM_API int scm_debug_cells_gc_interval ; >> -void scm_i_expensive_validation_check (SCM cell); >> +SCM_API void scm_i_expensive_validation_check (SCM cell); >> #endif >> >> SCM_INTERNAL scm_i_pthread_mutex_t scm_i_gc_admin_mutex; > > Please apply this one. Done. The C code now builds; the Scheme compilation bug is still =20 there, though. Ken=