From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.bugs Subject: Re: libguile/socket.c Date: Thu, 09 Feb 2006 10:10:32 +0000 Message-ID: <87slqsonaf.fsf@ossau.uklinux.net> References: <20060206084314.B6F9B727B@firefly.is-a-geek.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1139480812 21055 80.91.229.2 (9 Feb 2006 10:26:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 9 Feb 2006 10:26:52 +0000 (UTC) Cc: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Feb 09 11:26:50 2006 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F790h-0000qL-QR for guile-bugs@m.gmane.org; Thu, 09 Feb 2006 11:26:48 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F790e-00085P-NV for guile-bugs@m.gmane.org; Thu, 09 Feb 2006 05:26:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F78o1-0000A2-UI for bug-guile@gnu.org; Thu, 09 Feb 2006 05:13:42 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F78nz-00009i-2s for bug-guile@gnu.org; Thu, 09 Feb 2006 05:13:40 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F78nv-00009d-Li for bug-guile@gnu.org; Thu, 09 Feb 2006 05:13:36 -0500 Original-Received: from [80.84.72.33] (helo=mail3.uklinux.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1F78rR-0002Es-Q4 for bug-guile@gnu.org; Thu, 09 Feb 2006 05:17:13 -0500 Original-Received: from laruns (host86-129-147-232.range86-129.btcentralplus.com [86.129.147.232]) by mail3.uklinux.net (Postfix) with ESMTP id DF9E7409FC5; Thu, 9 Feb 2006 10:13:34 +0000 (UTC) Original-Received: from laruns (laruns [127.0.0.1]) by laruns (Postfix) with ESMTP id 209F76F701; Thu, 9 Feb 2006 10:10:33 +0000 (GMT) Original-To: hyperdivision@firefly.is-a-geek.org (hyperdivision) In-Reply-To: <20060206084314.B6F9B727B@firefly.is-a-geek.org> (hyperdivision@firefly.is-a-geek.org's message of "Mon, 06 Feb 2006 02:43:14 -0600") User-Agent: Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux) 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:3096 Archived-At: hyperdivision@firefly.is-a-geek.org (hyperdivision) writes: > line 1259 from cvs > libguile/socket.c > > size_t c_address_size needs to be set to 0 > otherwise gcc4 croaks. I wonder if that's because it's generally concerned about uninitialized variables, or because it's noticed the apparent bug in scm_c_make_socket_address, which does nothing with its address_size parameter and instead has another size_t variable on the stack. Can you try changing scm_c_make_socket_address to this: { struct sockaddr *soka; soka = scm_fill_sockaddr (scm_to_ushort (family), address, &args, 1, "scm_c_make_socket_address", &address_size); return soka; } and report whether that solves the problem? > also, i am having no luck getting cvs to work with x86_64 > alot of errors and i can't get any of them worked out. > stack overflows, etc. > if you want more specific info i can send the build messages. Yes please. Neil _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://lists.gnu.org/mailman/listinfo/bug-guile